Fixed regression in example lists.

This was associated with e1be934dc2.
This commit is contained in:
John MacFarlane 2013-01-09 15:54:39 -08:00
parent d599c4cdab
commit 0998f774ce

View file

@ -369,7 +369,8 @@ blockToLaTeX (OrderedList (start, numstyle, numdelim) lst) = do
LowerRoman -> "\\roman" <> braces x
UpperAlpha -> "\\Alph" <> braces x
LowerAlpha -> "\\alph" <> braces x
_ -> x
Example -> "\\arabic" <> braces x
DefaultStyle -> "\\arabic" <> braces x
let todelim x = case numdelim of
OneParen -> x <> ")"
TwoParens -> parens x