texmath-0.11.1: Conversion between formats used to represent mathematics.

Safe HaskellSafe
LanguageHaskell2010

Text.TeXMath.Readers.TeX.Macros

Description

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

Synopsis

Documentation

data Macro Source #

Instances
Show Macro Source # 
Instance details

Defined in Text.TeXMath.Readers.TeX.Macros

Methods

showsPrec :: Int -> Macro -> ShowS #

show :: Macro -> String #

showList :: [Macro] -> ShowS #

parseMacroDefinitions :: String -> ([Macro], String) Source #

Parses a string for a list of macro definitions, optionally separated and ended by spaces and TeX comments. Returns the list of macros (which may be empty) and the unparsed portion of the input string.

pMacroDefinition :: (Monad m, Stream s m Char) => ParsecT s st m Macro Source #

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

applyMacros :: [Macro] -> String -> String Source #

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.