<col>

Table Column (NISO JATS table model) (表の列 (NISO JATS 表モデル))

特定の列に関連する属性を提供するために使用される、表内のある列に関する記述。<col> がない場合は、これらの属性は関連する <colgroup> から継承される。(この要素は、XHTML col のcol 要素を元にし、それに簡単に変換できるように考えられたものです。)

属性

拡張コンテンツ・モデル

EMPTY

記述方法

これは空要素です。

この要素は以下の要素内に含むことができます:

用例

...
<table-wrap id="TX0.180">
<label>Table 3</label>
<caption><p>Patient costs for institutional
care at the end of scheduled follow up</p></caption>
<table border="1">
<colgroup>
<col span="1"/>
<col align="char" char="," charoff="50%" span="1"/>
</colgroup>
<thead>
<tr>
<th>Year</th>
<th>Cost per patient</th>
</tr>
</thead>
<tbody>
<tr>
<td>1997</td>
<td>$8,250</td>
</tr>
<tr>
<td>2000</td>
<td>$31,400</td>
</tr>
<tr>
<td>2003</td>
<td>$125,600</td>
</tr>
</tbody>
</table>
</table-wrap>
...