<table-wrap-group>
Table Wrapper Group
Container element for tables (<table-wrap> elements) that are to be displayed together.
Remarks
Related Resource: For a discussion on the use of <table-wrap-group>, see Table, Table Wrapper, and Table Group.
Position: The @position attribute may be used to indicate whether a <table-wrap-group> 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.
Multi-language Table/Table Groups: JATS provides several ways to tag tables and groups of tables in multiple languages. The element <block-alternatives> can be used to hold two or more versions of the table (<table-wrap>) or table group (<table-wrap-group>), each in a different language. It is also possible to place multiple <label> and <caption> elements inside a single table or table group, one label and caption for each language, differentiated by @xml:lang attributes. In the case of double labels and captions, the content of the figure or figure group is not repeated, only the labels and captions.
Attributes
Content Model
<!ELEMENT table-wrap-group %table-wrap-group-model; >
Expanded Content Model
((label)*, (caption)*, (abstract)*, (kwd-group)*, (subj-group)*, (alt-text | long-desc | email | ext-link | uri)*, (table-wrap | xref)+)
Description
The following, in order:
- <label> Label (of an Equation, Figure, Reference, etc.), zero or more
- <caption> Caption of a Figure, Table, etc., zero or more
- <abstract> Abstract, zero or more
- <kwd-group> Keyword Group, zero or more
- <subj-group> Subject Group, zero or more
- Any combination of:
- Accessibility Elements
- Linking Elements
- One or more of any of:
This element may be contained in:
Example
...
<sec>
<title>Institutional care</title>
...
<table-wrap-group>
<table-wrap id="TN0.124">
<caption>...</caption>
<table frame="box" rules="all" cellpadding="5">
<thead>...</thead>
<tbody>...</tbody>
</table>
</table-wrap>
<table-wrap id="TN0.125">
<caption>...</caption>
<table frame="box" rules="all" cellpadding="5">
<thead>...</thead>
<tbody>...</tbody>
</table>
</table-wrap>
<table-wrap id="TN0.126">
<caption>...</caption>
<table frame="box" rules="all" cellpadding="5">
<thead>...</thead>
<tbody>...</tbody>
</table>
</table-wrap>
</table-wrap-group>
</sec>
...