§ Module LaTeXML-tabular
- Misc.class
-
This module defines the basic tabular, or alignment, structure. It is roughly parallel to the HTML model.
|= tabular
- tabular
-
An alignment structure corresponding to tabular or various similar forms. The model is basically a copy of HTML4's table.
attributes:
- Common.attributes
-
included
- vattach
-
which row's baseline aligns with the container's baseline.
= (`top' | `middle' | `bottom')
- width
-
the desired width of the tabular.
- thead
-
A container for a set of rows that correspond to the header of the tabular.
attributes: Common.attributes
content: tr*
- tfoot
-
A container for a set of rows that correspond to the footer of the tabular.
attributes: Common.attributes
content: tr*
- tbody
-
A container for a set of rows corresponding to the body of the tabular.
attributes: Common.attributes
content: tr*
- tr
-
A row of a tabular.
attributes: Common.attributes
content: td*
- td
-
A cell in a row of a tabular.
attributes:
- Common.attributes
-
included
- colspan
-
indicates how many columns this cell spans or covers.
=nonNegativeInteger
- rowspan
-
indicates how many rows this cell spans or covers.
=nonNegativeInteger
- align
-
specifies the alignment of the content.
- width
-
specifies the desired width for the column.
- border
-
records a sequence of t or tt, r or rr, b or bb and l or ll for borders or doubled borders on any side of the cell.
- thead
-
whether this cell corresponds to a table head or foot.
=boolean
content: Flow.model