<col> Table Column (NISO JATS table model)

The description of one column of a table, used to provide attributes relating to a specific column. If there is no <col> element these attributes will be inherited from the associated <colgroup>. (This element is based on and intended to be converted easily to the XHTML col element.)
Attributes

Base Attributes

Models and Context
May be contained in
Description
This is an EMPTY element
Expanded Content Model

EMPTY

Tagged Sample

Describing two table columns

...
<table-wrap id="TX0.180">
 <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>
...