<tbody>

Table Body (NISO JATS table model)

Container element that holds the rows and columns in one of the body (as opposed to the header) portions of a table.

Remarks

Container element that holds the rows and columns in one of the body (as opposed to header) portions of a table.

Attributes

align Horizontal Alignment (NISO JATS table model)
char Table Cell Alignment Character (NISO JATS table model)
charoff Table Character Offset (NISO JATS table model)
content-type Type of Content
id Document Internal Identifier
style Style (NISO JATS table model; MathML Tag Set)
valign Vertical Alignment (NISO JATS table model)
xml:base Base

Related Elements

A NISO JATS XHTML-inspired table may be divided into header elements <thead> and table body elements <tbody>.

Content Model

<!ELEMENT %tbody.qname;  %tbody.content; >

Expanded Content Model

(tr)+

Description

<tr> Table Row (NISO JATS table model), one or more

This element may be contained in:

<array>, <table>

Example

    
...
<table-wrap id="bid.269">
<label>1</label>
<caption>
<title>Files on the taxonomy FTP site.</title>
</caption>
<table>
<thead>
<tr>
<th align="left" valign="top">File</th>
<th align="left" valign="top">Uncompresses to</th>
<th align="left" valign="top">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" valign="top">taxdump.tar.Z<xref ref-type="fn"
rid="mul2"><sup><italic>a</italic></sup></xref></td>
<td align="left" valign="top">readme.txt</td>
<td align="left" valign="top">A terse description of the dmp
files</td>
</tr>
<tr>
<td align="left" valign="top"></td>
<td align="left" valign="top">nodes.dmp</td>
<td align="left" valign="top">Structure of the database; lists
each taxid with its parent taxid, rank, and other values
associated with each node (genetic codes, etc.)</td>
</tr>
<tr>...</tr>
...
</tbody>
</table>
<table-wrap-foot>
<fn symbol="a" id="mul2">
<p>For non-UNIX users, the file taxdmp.zip includes the
same (zip compressed) data.</p>
</fn>
</table-wrap-foot>
</table-wrap>
...