HaTeX-3.22.3.1: The Haskell LaTeX library.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.LaTeX.Packages.AMSThm

Description

Package for theorem environments.

Synopsis

AMSThm package

amsthm :: PackageName Source #

AMSThm package. Example:

usepackage [] amsthm

AMSThm functions

newtheorem :: LaTeXC l => String -> l -> l Source #

Create a new theorem environment type. Arguments are environment name (this will be the argument when using the theorem function) and the displayed title.

For example:

newtheorem "prop" "Proposition"
theorem "prop" "This is it."

theorem :: LaTeXC l => String -> l -> l Source #

Use a environment created by newtheorem.

proof :: LaTeXC l => Maybe l -> l -> l Source #

The proof environment. The first optional argument is used to put a custom title to the proof.

qed :: LaTeXC l => l Source #

Insert the QED symbol \(\square\), as a concluding right-aligned terminator. Note that within a proof environment, this is automatically done at the end.

qedhere :: LaTeXC l => l Source #

Insert the QED symbol. This is supposed to be used within a proof environment, to change the default behaviour of putting the \(\square\) at the end.

data TheoremStyle Source #

Different styles for theorems.

theoremstyle :: LaTeXC l => TheoremStyle -> l Source #

Set the theorem style. Call this function in the preamble.