HaTeX-3.21.0.0: The Haskell LaTeX library.

Safe HaskellSafe
LanguageHaskell2010

Text.LaTeX.Packages.LTableX

Contents

Synopsis

ltablex package

ltablex :: PackageName Source #

ltablex package. Use it to import it like this:

usepackage [] ltablex

ltablex commands

convertXColumns :: LaTeXC l => l Source #

Treet the specified width as the maximum allowed, not the exact width of the table.

ltablex has added a feature that treats the X columns like ‘l’ columns if the table contents would allow that to happen without exceeding the specified width of the table. In other words, the specified width is treated as the maximum allowed and not the exact width of the table. This feature is the default but can be disabled (or enabled) with keepXColumns (or convertXColumns).

tabularx Source #

Arguments

:: LaTeXC l 
=> Measure

Width of the whole tabular.

-> Maybe Pos

This optional parameter can be used to specify the vertical position of the table. Defaulted to Center.

-> [TableSpec]

Table specification of columns and vertical lines.

-> l

Table content. See &, lnbk, hline and cline.

-> l

Resulting table syntax.

The tabularx environment takes the same arguments as tabular*, but modifies the widths of certain columns, rather than the inter column space, to set a table with the requested total width. The columns that may stretch are marked with the new token X in the preamble argument.

endfirsthead :: LaTeXC l => l Source #

End the first head.

Everything above this command will appear at the beginning of the table, in the first page.

endhead :: LaTeXC l => l Source #

End the head.

Whatever you put before this command and below endfirsthead will be displayed at the top of the table in every page except the first one.

endfoot :: LaTeXC l => l Source #

End the foot.

Similar to endhead, what you put after endhead and before this command will appear at the bottom of the table in every page except the last one.

endlastfoot :: LaTeXC l => l Source #

End the last foot.

Similar to endfisthead. The elements after endfoot and before this command will be displayed at the bottom of the table but only in the last page where the table appears.