Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Some types shared along the library.
Documentation
type PackageName = String Source #
Package names are represented by a String
.
Type of labels.
createLabel :: String -> Label Source #
Create a label from its name.
Type of table specifications.
LeftColumn | Left-justified column. |
CenterColumn | Centered column. |
RightColumn | Right-justified column. |
ParColumnTop LaTeX | Paragraph column with text vertically aligned at the top. |
ParColumnMid LaTeX | Paragraph column with text vertically aligned at the middle. Requires |
ParColumnBot LaTeX | Paragraph column with text vertically aligned at the bottom. Requires |
NameColumn String | User defined column. Requires |
BeforeColumn LaTeX | Can be used before a |
AfterColumn LaTeX | Can be used after a |
VerticalLine | Vertical line between two columns. |
DVerticalLine | Double vertical line between two columns. |
Separator LaTeX | Column separator. Requires |
Measure units defined in LaTeX. Use CustomMeasure
to use commands like textwidth
.
For instance:
rule Nothing (CustomMeasure linewidth) (Pt 2)
This will create a black box (see rule
) as wide as the text and two points tall.