Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- longtablep :: PackageName
- longtable :: LaTeXC l => Maybe Pos -> [TableSpec] -> l -> l
- endfirsthead :: LaTeXC l => l
- endhead :: LaTeXC l => l
- endfoot :: LaTeXC l => l
- endlastfoot :: LaTeXC l => l
longtable package
longtablep :: PackageName Source #
longtable package. Use it to import it like this:
usepackage [] longtable
longtable commands
:: LaTeXC l | |
=> Maybe Pos | This optional parameter can be used to specify the vertical position of the table.
Defaulted to |
-> [TableSpec] | Table specification of columns and vertical lines. |
-> l | Table content. See |
-> 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.