HaTeX-3.4: The Haskell LaTeX library.

Safe HaskellNone

Text.LaTeX.Packages.AMSMath

Contents

Synopsis

AMSMath package

amsmath :: PackageNameSource

AMSMath package. Example:

 usepackage [] amsmath

AMSMath functions

math :: LaTeXC l => l -> lSource

Inline mathematical expressions.

Symbols and utilities

Superscript and subscript

(^:) :: LaTeXC l => l -> l -> lSource

Superscript.

(!:) :: LaTeXC l => l -> l -> lSource

Subscript.

Function symbols

Some symbols are preceded with t to be distinguished from predefined Haskell entities (like sin and cos).

tsin :: LaTeXC l => lSource

Sine function symbol.

arcsin :: LaTeXC l => lSource

Arcsine function symbol.

tcos :: LaTeXC l => lSource

Cosine function symbol.

arccos :: LaTeXC l => lSource

Arccosine function symbol.

ttan :: LaTeXC l => lSource

Tangent function symbol.

arctan :: LaTeXC l => lSource

Arctangent function symbol.

texp :: LaTeXC l => lSource

Exponential function symbol.

tlog :: LaTeXC l => lSource

Logarithm function symbol.

ln :: LaTeXC l => lSource

Natural logarithm symbol.

Operator symbols

(=:) :: LaTeXC l => l -> l -> lSource

Equal.

 infixr 4 =:

(/=:) :: LaTeXC l => l -> l -> lSource

Not equal.

 infixr 4 /=:

(>:) :: LaTeXC l => l -> l -> lSource

Greater.

(>=:) :: LaTeXC l => l -> l -> lSource

Greater or equal.

(<:) :: LaTeXC l => l -> l -> lSource

Lesser.

(<=:) :: LaTeXC l => l -> l -> lSource

Lesser or equal.

in_ :: LaTeXC l => l -> l -> lSource

ni :: LaTeXC l => l -> l -> lSource

notin :: LaTeXC l => l -> l -> lSource

Greek alphabet

Functions of greek alphabet symbols.

Uppercase versions are suffixed with u. Variants are prefixed with var. The function pi_ is ended by an underscore symbol to distinguish it from the pi Prelude function.

beta :: LaTeXC l => lSource

zeta :: LaTeXC l => lSource

eta :: LaTeXC l => lSource

iota :: LaTeXC l => lSource

mu :: LaTeXC l => lSource

nu :: LaTeXC l => lSource

xi :: LaTeXC l => lSource

xiu :: LaTeXC l => lSource

pi_ :: LaTeXC l => lSource

piu :: LaTeXC l => lSource

rho :: LaTeXC l => lSource

tau :: LaTeXC l => lSource

phi :: LaTeXC l => lSource

phiu :: LaTeXC l => lSource

chi :: LaTeXC l => lSource

psi :: LaTeXC l => lSource

psiu :: LaTeXC l => lSource

Other symbols

to :: LaTeXC l => lSource

A right-arrow.

forall :: LaTeXC l => lSource

For all symbol.

dagger :: LaTeXC l => lSource

Dagger symbol.

ddagger :: LaTeXC l => lSource

Double dagger symbol.

Fonts

mathbf :: LaTeXC l => l -> lSource

mathrm :: LaTeXC l => l -> lSource

mathcal :: LaTeXC l => l -> lSource

mathsf :: LaTeXC l => l -> lSource

mathtt :: LaTeXC l => l -> lSource

mathit :: LaTeXC l => l -> lSource