<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> these attributes will be inherited from the associated <colgroup>. (This element is based on and intended to be converted easily to the XHMTL col element.)

Usage/Remarks

Use W3C documentation for the XHTML 1.1 table model (https://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_tablemodule).
Attributes

Base Attributes

Models and Context
May be contained in
Description
This is an EMPTY element
Content Model
<!ELEMENT %col.qname;  %col.content; >
Expanded Content Model

EMPTY

Tagged Sample

As part of array

...
<p>Visually inspect the fracture surfaces to establish 
 the nature of the fracture, and assess the type of 
 fracture as follows:
 <array id="tab_g">
  <table rules="groups">
   <col width="9.23%"/>
   <col width="90.77%"/>
   <tbody>
    <tr>
     <td align="left" scope="row" valign="top">A</td>
     <td align="left" valign="top">is cohesive failure of 
      substrate;</td>
    </tr>
    <tr>
     <td align="left" scope="row" valign="top">A/B</td>
     <td align="left" valign="top">is adhesive failure 
      between substrate and first coat;</td>
    </tr>
    <tr>
     <td align="left" scope="row" valign="top">B</td>
     <td align="left" valign="top">is cohesive failure 
      of first coat;</td>
    </tr>
    ...
   </tbody>
  </table>
 </array>
</p>
...