◇◆
<array> Array (Simple Tabulation)
Tabular arrangement of text in the narrative flow of the
document. Unlike a <table-wrap>, an
array does not contain a label, title, caption, or table
headings (column heads).
Usage/Remarks
By default in this Tag Set, an <array> includes the NISO JATS table body model (<tbody>), which is based on and designed to be easily
converted to the XHTML 1.1 table body element (tbody). An <array> may contain a graphic (<graphic>) rather than a table body to express the rows and columns.
OASIS CALS Table Note
The OASIS XML Exchange table model may be used
instead of or in addition to the default NISO JATS XHTML-based table model. OASIS
table users can
set the <array> element to contain the oasis:tbody
element, typically with a namespace prefix of “oasis”. A separate Tag Library
describing the OASIS table model elements, attributes, and parameter entities may
be accessed at: https://jats.nlm.nih.gov/options/OASIS/tag-library/19990315/index.html
Attributes
Models and Context
May be contained in
<abstract>, <ack>, <alternatives>, <answer>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <chem-struct>, <disp-formula>, <disp-quote>, <explanation>, <fig>, <glossary>, <license-p>, <named-content>, <notes>, <option>, <p>, <question>, <question-preamble>, <ref-list>, <sec>, <see>, <see-also>, <styled-content>, <supplementary-material>, <td>, <term>, <th>, <trans-abstract>
Description
The following, in order:
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- Any combination of:
- Accessibility Elements
- Linking Elements
- Any one of:
- Any combination of:
- Ownership Elements
Content Model
<!ELEMENT array %array-model; >
Expanded Content Model
(label?, (alt-text | long-desc | email | ext-link | uri)*, ((alternatives | graphic | media)* | tbody), (attrib | permissions)*)
Tagged Samples
Basic array
Typical array contains just only the table body (<tbody>) portion of a table.
...
<array>
<tbody>
<tr valign="bottom">
<td align="left">3</td>
<td align="char" char="." charoff="35%">14.4411</td>
<td align="center">
<graphic id="g14" orientation="portrait" position="anchor" xlink:href="d14"/></td>
<td align="char" char="." charoff="35%">14.4411</td>
<td align="center">
<graphic id="g15" orientation="portrait" position="anchor" xlink:href="d15"/></td>
<td align="char" char="." charoff="35%">14.4414</td>
<td align="center">
<graphic id="g16" orientation="portrait" position="anchor" xlink:href="d16"/></td>
<td align="char" char="." charoff="35%">14.4414</td>
<td align="center">
<graphic id="g17" orientation="portrait" position="anchor" xlink:href="d17"/></td>
</tr>
</tbody>
</array>
...
Inside paragraph
Arrays are typically small insertions in the middle of narrative text.
...
<body>
<p><italic>Goniocyclus hannibalensis</italic> is founded on specimens that
cannot be related to a precise stratgraphic position within the excavated
succession; consequently faunal relationships cannot be expressed with
certainty. ... Preliminary reports of the ancestral
<italic>Goniocyclus</italic> species are described as:
<array>
<tbody>
<tr>
<td>Suborder</td>
<td><sc>Goniatitina</sc> (Hyatt, 1884)</td>
</tr>
<tr>
<td>Superfamily</td>
<td><sc>Pericyclaceae</sc> (Hyatt, 1900)</td>
</tr>
<tr>
<td>Family</td>
<td><sc>Pericyckidae</sc> (Hyatt, 1900)</td>
</tr>
<tr>
<td>Genus</td>
<td><sc>Goniocyclus</sc> (Gordon, 1986)</td>
</tr>
<tr>
<td>Type Species</td>
<td><italic>Goniatites blairi</italic> (Miller and Gurley, 1896)</td>
</tr>
</tbody>
</array>
</p>
</body>
...