|
"http://www.w3.org/TR/REC-html40/loose.dtd">
Lining It Up in Columns
\kill ends a row, while
commands
\= and \> start a new column.
All other tabbing commands do not even exist.
These environments are supported, using HTML TABLE element, rendering is satisfactory in most (not too
complicated) cases.
By contrast with LATEX,
some of the array items always are typeset in display mode.
Whether an array item is typeset in display mode or not depends upon
its column specification,
the l , c and r specifications open display mode
while the remaining p and @ do not.
The l , c ,r and @ specifications
disable word wrap, while the p specification enables it.Entries in a column whose specification is l (resp. c or
r ) get left-aligned (resp. centered or right-aligned)
in the horizontal direction.
They will get top-aligned in the vertical direction if there are
other column specifications in the
same array that specify vertical alignement constraints
(such as ``p{ wd} '', see below).
Otherwise, vertical alignement is unspecified.Entries in a column whose specification is p{ wd}
get left-aligned in the horizontal direction and
top-aligned in the vertical direction
and a paragraph break reduces to one line break inside them.
This is the only occasion where
HEVEA makes a distinction between LR-mode and paragraph mode.
Also observe that the length argument wd to the p
specification is ignored.Some LATEX array features are not supported at all:
tabular* environment is
recognized and gets renderered as an HTML table with an advisory
width attribute.By default, HEVEA implements the array package (see [LATEX-bis, Section 5.3] and section B.17.2 in this document), which significantly extends the array and tabular environments. |