F Schema

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

Used by:
Pattern tabular_attributes

Attributes for tabular.

Attributes:
Attribute vattach

= (top  |  middle  |  bottom)

which row’s baseline aligns with the container’s baseline.

Attribute width

the desired width of the tabular.

Pattern tabular_model

Content model for tabular.

Content:

(thead  |  tfoot  |  tbody  |  tr)*

Element thead

A container for a set of rows that correspond to the header of the tabular.

Used by:
Pattern thead_attributes

Attributes for thead.

Attributes:
Pattern thead_model

Content model for thead.

Content:

tr*

Element tfoot

A container for a set of rows that correspond to the footer of the tabular.

Used by:
Pattern tfoot_attributes

Attributes for tfoot.

Attributes:
Pattern tfoot_model

Content model for tfoot.

Content:

tr*

Element tbody

A container for a set of rows corresponding to the body of the tabular.

Used by:
Pattern tbody_attributes

Attributes for tbody.

Attributes:
Pattern tbody_model

Content model for tbody.

Content:

tr*

Element tr
Pattern tr_attributes

Attributes for tr.

Attributes:
Pattern tr_model

Content model for tr.

Content:

td*

Element td

A cell in a row of a tabular.

Used by:
Pattern td_attributes

Attributes for td.

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

Pattern td_model

Content model for td.

Content: