texmath-0.12.8.6: Conversion between math formats.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.TeXMath.TeX

Synopsis

Documentation

data TeX Source #

An intermediate representation of TeX math, to be used in rendering.

Constructors

ControlSeq Text 
Token Char 
Literal Text 
Grouped [TeX] 
Space 

Instances

Instances details
Show TeX Source # 
Instance details

Defined in Text.TeXMath.TeX

Methods

showsPrec :: Int -> TeX -> ShowS

show :: TeX -> String

showList :: [TeX] -> ShowS

Eq TeX Source # 
Instance details

Defined in Text.TeXMath.TeX

Methods

(==) :: TeX -> TeX -> Bool

(/=) :: TeX -> TeX -> Bool

renderTeX :: TeX -> Text -> Text Source #

Render a TeX to a string, appending to the front of the given string.

isControlSeq :: Text -> Bool Source #

escapeLaTeX :: Char -> TeX Source #