◇◆
<table> Table
A table (using the HTML model).
Usage/Remarks
Authoring Note
The @floatstyle and @orient attributes are not available in the authoring model, as they will have no effect
in web display. For backwards-compatibility and possible future use, they are retained
in the production model.
Display/Formatting Note
Typically, no @xreflabel is present. A generated label “Table X” (where “X” is a Roman numeral based on the
order of <table> elements in the paper) will display, followed on a separate line by a caption (if
one exists). Any <xref> to the table will display only the generated label as the cross-reference’s text,
“Table I”. Brackets or other types of punctuation to enclose the cross-reference must
be present in the narrative text.
If an @xreflabel is used (rare occurrence), its value (e.g., xreflabel="Tabulation 1") will display as a label, “Tabulation 1”. Any cross-reference (<xref>) to the table will display only the @xreflabel value as the text of the cross-reference; punctuation to enclose the cross-reference
must be present in the narrative text.
Attributes
Models and Context
May be contained in
Description
The following, in order:
- <caption> Caption, zero or one
- Any one of:
- <col> Column, zero or more
- <colgroup> Column Group, zero or more
- Any one of:
- The following, in order:
- <thead> Table Header, zero or one
- <tfoot> Table Foot, zero or one
- <tbody> Table Body, one or more
- <tr> Table Row, one or more
- The following, in order:
Expanded Content Model
(caption?, (col* | colgroup*), ((thead?, tfoot?, tbody+) | (tr+)))
Tagged Sample
Typical JATS XHTML-like table tagging, with caption
...
<section xml:id="mul4-4">
<title>Fruits and Nuts</title>
<para>The colony abounded with a wealth of fruits and nuts, some not previously known to the
Europeans. ...</para>
<table xml:id="mul-table1" frame="box">
<caption>
<para>North American Native Plants</para>
</caption>
<colgroup>
<col align="right" valign="top"/>
<col valign="top"/>
<col align="center" valign="top"/>
</colgroup>
<thead>
<tr valign="top">
<th>Use</th>
<th>Plant Part</th>
<th>Examples</th>
</tr>
</thead>
<tbody>
<tr valign="top">
<td rowspan="8"><emphasis role="bold">Vegetables</emphasis></td>
</tr>
<tr valign="top">
<td rowspan="2">Seeds</td>
<td>Corn</td>
</tr>
<tr valign="top">
<td>Beans</td>
</tr>
<tr valign="top">
<td rowspan="3">Fruits</td>
<td>Squash</td>
</tr>
<tr valign="top">
<td>Peppers</td>
</tr>
<tr valign="top">
<td>Tomatoes</td>
</tr>
<tr valign="top">
<td rowspan="2">Roots</td>
<td>Potatoes</td>
</tr>
<tr valign="top">
<td>Sweet Potatoes</td>
</tr>
<tr valign="top">
<td rowspan="4"><emphasis role="bold">Teas</emphasis></td>
</tr>
<tr valign="top">
<td rowspan="2">Leaves</td>
<td>Mountain Mint (Namewuskons)</td>
</tr>
<tr valign="top">
<td>Dawn Mint (Wabinowusk)</td>
</tr>
<tr valign="top">
<td>Berries</td>
<td>Wintergreen</td>
</tr>
</tbody>
</table>
</section>
...