<td>

Table Data Cell (NISO JATS table model)

One ordinary cell in the body of a table, as opposed to a cell in the table header. (This element is based on and intended to be converted easily to the XHMTL td element.)

Remarks

One ordinary cell in a table, as opposed to a cell in the table header.

Attributes

abbr Abbreviation (NISO JATS table model)
align Horizontal Alignment (NISO JATS table model)
axis Axis (NISO JATS table model)
char Table Cell Alignment Character (NISO JATS table model)
charoff Table Character Offset (NISO JATS table model)
colspan Column Span (NISO JATS table model)
content-type Type of Content
headers Headers (NISO JATS table model)
id Document Internal Identifier
rowspan Row Span (NISO JATS table model)
scope Scope (NISO JATS table model)
style Style (NISO JATS table model; MathML Tag Set)
valign Vertical Alignment (NISO JATS table model)
xml:base Base

Related Elements

There are two elements in the NISO JATS XHTML-inspired table model that should be used to contain the contents of the table: <td> contains ordinary data, and <th> contains table header data.

Content Model

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

Expanded Content Model

(#PCDATA | email | ext-link | uri | inline-supplementary-material | related-article | related-object | hr | bold | fixed-case | italic | monospace | overline | overline-start | overline-end | roman | sans-serif | sc | strike | underline | underline-start | underline-end | ruby | alternatives | inline-graphic | private-char | chem-struct | inline-formula | tex-math | mml:math | abbrev | index-term | index-term-range-end | milestone-end | milestone-start | named-content | styled-content | fn | target | xref | sub | sup | x | disp-formula | disp-formula-group | break | chem-struct-wrap | citation-alternatives | element-citation | mixed-citation | def-list | list | p | answer | answer-set | question | question-wrap | array | code | graphic | media | preformat)*

Description

Any combination of:

This element may be contained in:

<tr>

Example 1

Table data cells containing text and graphics:


... 
<table> 
...
<tr valign="bottom">
<td align="left" colspan="1" rowspan="1">3</td>
<td align="char" char="." colspan="1" rowspan="1">14.4411</td>
<td align="center" colspan="1" rowspan="1">
<graphic id="g14" orientation="portrait" position="anchor" xlink:href="d14"/></td>
<td align="char" char="." colspan="1" rowspan="1">14.4411</td>
<td align="center" colspan="1" rowspan="1">
<graphic id="g15" orientation="portrait" position="anchor" xlink:href="d15"/></td>
<td align="char" char="." colspan="1" rowspan="1">14.4414</td>
<td align="center" colspan="1" rowspan="1">
<graphic id="g16" orientation="portrait" position="anchor" xlink:href="d16"/></td>
<td align="char" char="." colspan="1" rowspan="1">14.4414</td>
<td align="center" colspan="1" rowspan="1">
<graphic id="g17" orientation="portrait" position="anchor" xlink:href="d17"/></td>
</tr>
</table>
...

Example 2

Another sample table:

    
...
<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>
...