HaTeX-3.16.0.0: The Haskell LaTeX library.

Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.LaTeX.Packages.Hyperref

Contents

Synopsis

Hyperref package

hyperref :: PackageName Source

The hyperref package.

usepackage [] hyperref

Hyperref commands

href :: LaTeXC l => [HRefOption] -> URL -> l -> l Source

Reference to an URL.

url :: LaTeXC l => URL -> l Source

Write an URL hyperlinked.

nolinkurl :: LaTeXC l => URL -> l Source

Write an URL without creating a hyperlink.

hyperbaseurl :: LaTeXC l => URL -> l Source

Establish a base URL.

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.

nameref :: LaTeXC l => Label -> l Source

Similar to autoref, but inserts text corresponding to the section name. Note that this command comes from the nameref package, but it's automatically included when importing hyperref.