§ Module LaTeXML-tabular
- Add to Misc.class
-
This module defines the basic tabular, or alignment, structure. It is roughly parallel to the HTML model.
- |=
- Element tabular
-
An alignment structure corresponding to tabular or various similar forms. The model is basically a copy of HTML4's table.
- Includes:
- Attribute vattach
-
= (top | middle | bottom)
which row's baseline aligns with the container's baseline.
- Attribute width
-
the desired width of the tabular.
- Content:
- Used by:
- Element thead
-
A container for a set of rows that correspond to the header of the tabular.
- Includes:
- Content:
-
tr*
- Used by:
- Element tfoot
-
A container for a set of rows that correspond to the footer of the tabular.
- Includes:
- Content:
-
tr*
- Used by:
- Element tbody
-
A container for a set of rows corresponding to the body of the tabular.
- Includes:
- Content:
-
tr*
- Used by:
- Element tr
-
A row of a tabular.
- Element td
-
A cell in a row of a tabular.
- Includes:
- Attribute colspan
-
= nonNegativeInteger
indicates how many columns this cell spans or covers.
- Attribute rowspan
-
= nonNegativeInteger
indicates how many rows this cell spans or covers.
- Attribute align
-
= text
specifies the alignment of the content.
- Attribute width
-
specifies the desired width for the column.
- Attribute border
-
= text
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.
- Attribute thead
-
= boolean
whether this cell corresponds to a table head or foot.
- Content:
- Used by: