ideas-1.7: Feedback services for intelligent tutoring systems

Maintainerbastiaan.heeren@ou.nl
Stabilityprovisional
Portabilityportable (depends on ghc)
Safe HaskellSafe
LanguageHaskell98

Ideas.Text.Latex

Description

Support for LaTeX.

Synopsis

Documentation

class ToLatex a where Source #

Minimal complete definition

toLatex | toLatexPrec

Methods

toLatex :: a -> Latex Source #

toLatexPrec :: Int -> a -> Latex Source #

toLatexList :: [a] -> Latex Source #

(<>) :: Semigroup a => a -> a -> a infixr 6 #

An associative operation.

(a <> b) <> c = a <> (b <> c)

If a is also a Monoid we further require

(<>) = mappend