Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Synopsis
- hyperref :: PackageName
- data HRefOption
- data URL
- createURL :: String -> URL
- href :: LaTeXC l => [HRefOption] -> URL -> l -> l
- url :: LaTeXC l => URL -> l
- nolinkurl :: LaTeXC l => URL -> l
- hyperbaseurl :: LaTeXC l => URL -> l
- hyperimage :: LaTeXC l => URL -> l -> l
- autoref :: LaTeXC l => Label -> l
- nameref :: LaTeXC l => Label -> l
- pdftex :: LaTeXC l => l
- pdftitle :: LaTeXC l => l -> l
- pdfauthor :: LaTeXC l => l -> l
- pdfsubject :: LaTeXC l => l -> l
- pdfcreator :: LaTeXC l => l -> l
- pdfproducer :: LaTeXC l => l -> l
- pdfkeywords :: LaTeXC l => l -> l
- pdftrapped :: LaTeXC l => Maybe Bool -> l
- pdfstartpage :: LaTeXC l => l -> l
- pdfpagelayout :: LaTeXC l => PdfPageLayout -> l
- data PdfPageLayout
Hyperref package
hyperref :: PackageName Source #
The hyperref
package.
usepackage [] hyperref
Hyperref commands
data HRefOption Source #
Instances
Show HRefOption Source # | |
Defined in Text.LaTeX.Packages.Hyperref showsPrec :: Int -> HRefOption -> ShowS # show :: HRefOption -> String # showList :: [HRefOption] -> ShowS # | |
Render HRefOption Source # | |
Defined in Text.LaTeX.Packages.Hyperref render :: HRefOption -> Text Source # |
hyperimage :: LaTeXC l => URL -> l -> l Source #
hyperimage imgURL t
:
The link to the image referenced by the imgURL
is inserted, using t
as the anchor.
autoref :: LaTeXC l => Label -> l Source #
This is a replacement for the usual ref
command that places a contextual label in front of the reference.
Package options
pdftex :: LaTeXC l => l Source #
This package option selects the pdfTeX backend for the Hyperref package.
pdftitle :: LaTeXC l => l -> l Source #
This package option sets the document information Title field.
pdfauthor :: LaTeXC l => l -> l Source #
This package option sets the document information Author field.
pdfsubject :: LaTeXC l => l -> l Source #
This package option sets the document information Subject field.
pdfcreator :: LaTeXC l => l -> l Source #
This package option sets the document information Creator field.
pdfproducer :: LaTeXC l => l -> l Source #
This package option sets the document information Producer field.
pdfkeywords :: LaTeXC l => l -> l Source #
This package option sets the document information Keywords field.
pdftrapped :: LaTeXC l => Maybe Bool -> l Source #
This package option sets the document information Trapped entry.
An Nothing
value means, the entry is not set.
pdfstartpage :: LaTeXC l => l -> l Source #
This package option determines on which page the PDF file is opened.
pdfpagelayout :: LaTeXC l => PdfPageLayout -> l Source #
This package option sets the layout of PDF pages.
data PdfPageLayout Source #
Specification for how pages of a PDF should be displayed.
SinglePage | Displays a single page; advancing flips the page. |
OneColumn | Displays a single page; advancing flips the page. |
TwoColumnLeft | Displays the document in two columns, odd-numbered pages to the left. |
TwoColumnRight | Displays the document in two columns, odd-numbered pages to the right. |
TwoPageLeft | Displays two pages, odd-numbered pages to the left (since PDF 1.5). |
TwoPageRight | Displays two pages, odd-numbered pages to the right (since PDF 1.5). |
Instances
Eq PdfPageLayout Source # | |
Defined in Text.LaTeX.Packages.Hyperref (==) :: PdfPageLayout -> PdfPageLayout -> Bool # (/=) :: PdfPageLayout -> PdfPageLayout -> Bool # | |
Ord PdfPageLayout Source # | |
Defined in Text.LaTeX.Packages.Hyperref compare :: PdfPageLayout -> PdfPageLayout -> Ordering # (<) :: PdfPageLayout -> PdfPageLayout -> Bool # (<=) :: PdfPageLayout -> PdfPageLayout -> Bool # (>) :: PdfPageLayout -> PdfPageLayout -> Bool # (>=) :: PdfPageLayout -> PdfPageLayout -> Bool # max :: PdfPageLayout -> PdfPageLayout -> PdfPageLayout # min :: PdfPageLayout -> PdfPageLayout -> PdfPageLayout # | |
Read PdfPageLayout Source # | |
Defined in Text.LaTeX.Packages.Hyperref readsPrec :: Int -> ReadS PdfPageLayout # readList :: ReadS [PdfPageLayout] # | |
Show PdfPageLayout Source # | |
Defined in Text.LaTeX.Packages.Hyperref showsPrec :: Int -> PdfPageLayout -> ShowS # show :: PdfPageLayout -> String # showList :: [PdfPageLayout] -> ShowS # |