HaTeX-3.21.0.0: The Haskell LaTeX library.

Safe HaskellSafe
LanguageHaskell2010

Text.LaTeX.Packages.LongTable

Contents

Synopsis

longtable package

longtablep :: PackageName Source #

longtable package. Use it to import it like this:

usepackage [] longtable

longtable commands

longtable Source #

Arguments

:: LaTeXC l 
=> 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 longtable environment can be used to typeset multi-page tables.

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.

Package Options