◇◆
<table-wrap> Table Wrapper
Wrapper element for a complete table, including the tabular material (rows and columns),
caption (including title), footnotes, and alternative descriptions of the table for
purposes of accessibility.
Usage/Remarks
This element has been designed to capture a construct named “table”, whether that
structure contains non-tabular structures such as graphics, lists, or paragraphs;
or an explicitly tagged table element (<table> in the Interchange Tag Sets or <oasis:table> element in the Extended Tag Set). Standards documents may associate table captions
and table numbers with material that is not explicitly tabular. Within the <table-wrap> element, row and column tags that describe table cells should be defined by either
the <table> element of the NISO JATS table model (based on and designed to be converted easily
to the XHTML 1.1 table model) or by the OASIS XML Exchange (CALS) table model <oasis:table>.
Footnotes
Footnotes inside a <table-wrap> are assumed to be footnotes to the table and, as part of the table, are displayed
at the bottom of the table, usually as part of the <table-wrap-foot>, rather than at the bottom of the page or otherwise separated from the display of
the table.
Position
The @position attribute may be used to indicate whether a <table-wrap> must be anchored at its exact location within the text or whether it may float, for
example, to the top of the next page, into the next column, to the end of a logical
file, or within a separate window.
Modifications to the XHTML Table Model
In the NISO JATS table model, the XHMTL™ table model has been modified to remove the
<caption> element from within the <table> element, because, in the NISO STS Tag Sets, the <caption> element has been made part of the <table-wrap> element.
OASIS Exchange CALS Table Note
The OASIS modules for the
OASIS XML Exchange table model (based on the CALS table model) have been included
in the NISO STS Extended Tag Sets, so <oasis:table> may be used in addition to or in place of the XHTML <table> element. 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
When Content is a Form
The @is-form attribute can be used to indicate that the table wrapper contains a form. What constitutes
a “form” is not defined by NISO STS.
Attributes
orientation (default = portrait)
position (default = float)
Models and Context
May be contained in
<ack>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <disp-quote>, <fig>, <glossary>, <index>, <index-div>, <index-group>, <license-p>, <named-content>, <non-normative-example>, <non-normative-note>, <normative-example>, <normative-note>, <notes>, <p>, <ref-list>, <sec>, <styled-content>, <supplementary-material>, <table-wrap-group>, <tbx:crossReference>, <tbx:definition>, <tbx:entailedTerm>, <tbx:example>, <tbx:externalCrossReference>, <tbx:note>, <tbx:pronunciation>, <tbx:see>, <tbx:source>, <tbx:term>, <tbx:usageNote>, <term-display>, <term-sec>
Description
The following, in order:
- <editing-instruction> Editing Instruction, zero or more
- <object-id> Object Identifier, zero or more
- <label> Label of a Figure, Reference, Etc., zero or one
- <caption> Caption of a Figure, Table, Etc., zero or one
- Any combination of:
- Accessibility Elements
- External Linking Elements
- Any combination of:
- <disp-quote> Quote, Displayed
- <speech> Speech
- <statement> Statement, Formal
- <verse-group> Verse Form For Poetry
- Lists
- <alternatives> Alternatives For Processing
- <chem-struct-wrap> Chemical Structure Wrapper
- <code> Code Text
- <graphic> Graphic
- <media> Media Object
- <preformat> Preformatted Text
- Standards Note and Example Elements
- <table> Table (NISO JATS table model)
- <oasis:table> OASIS XML Exchange (CALS) Table (In STS Extended ONLY)
- Any combination of:
- <table-wrap-foot> Table Wrap Footer
- Ownership Elements
Content Model
<!ELEMENT table-wrap %table-wrap-model; >
Expanded Content Model
((editing-instruction)*, (object-id)*, label?, (caption)?, (alt-text | long-desc | email | ext-link | uri)*, (disp-quote | speech | statement | verse-group | def-list | list | alternatives | chem-struct-wrap | code | graphic | media | preformat | non-normative-note | normative-note | non-normative-example | normative-example | notes-group | table | oasis:table)*, (table-wrap-foot | attrib | permissions)*)
Tagged Sample
With label and caption
...
<sec id="s6.7.1.5">
<label>6.7.1.5</label>
<title>Ambient illumination</title>
<p>This test is used to determine the ambient light
levels under which the scanner will operate.</p>
<p>... Specific applications may not require the
extended range noted in <xref ref-type="table"
rid="t11">Table 11</xref>.</p>
<table-wrap id="t11">
<label>Table 11</label>
<caption><title>Ambient illumination levels</title></caption>
<table>
<thead>
<tr>
<th>Lighting Conditions</th>
<th>Illumination Level Lux</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dark room</td>
<td>0</td>
</tr>
<tr>
<td>Desk top</td>
<td>100</td>
</tr>
<tr>
<td>Overcast daylight</td>
<td>1,000</td>
</tr>
<tr>
<td>Bright sunlight</td>
<td>100,000</td>
</tr>
</tbody>
</table>
</table-wrap>
...
</sec>
...