texmath-0.3.1.5: Conversion of LaTeX math formulas to MathML.

Text.TeXMath.Macros

Description

Functions for parsing LaTeX macro definitions and applying macros to LateX expressions.

Synopsis

Documentation

newtype Macro Source

Constructors

Macro 

pMacroDefinition :: Parser MacroSource

Parses a \newcommand or \renewcommand macro definition and returns a Macro.

pSkipSpaceComments :: Parser ()Source

Skip whitespace and comments.

applyMacros :: [Macro] -> String -> StringSource

Applies a list of macros to a string recursively until a fixed point is reached. If there are several macros in the list with the same name, earlier ones will shadow later ones.