Fixed regression in example lists.
This was associated with e1be934dc2
.
This commit is contained in:
parent
d599c4cdab
commit
0998f774ce
1 changed files with 7 additions and 6 deletions
|
@ -364,12 +364,13 @@ blockToLaTeX (OrderedList (start, numstyle, numdelim) lst) = do
|
|||
items <- mapM listItemToLaTeX lst
|
||||
modify (\s -> s {stOLLevel = oldlevel})
|
||||
let tostyle x = case numstyle of
|
||||
Decimal -> "\\arabic" <> braces x
|
||||
UpperRoman -> "\\Roman" <> braces x
|
||||
LowerRoman -> "\\roman" <> braces x
|
||||
UpperAlpha -> "\\Alph" <> braces x
|
||||
LowerAlpha -> "\\alph" <> braces x
|
||||
_ -> x
|
||||
Decimal -> "\\arabic" <> braces x
|
||||
UpperRoman -> "\\Roman" <> braces x
|
||||
LowerRoman -> "\\roman" <> braces x
|
||||
UpperAlpha -> "\\Alph" <> braces x
|
||||
LowerAlpha -> "\\alph" <> braces x
|
||||
Example -> "\\arabic" <> braces x
|
||||
DefaultStyle -> "\\arabic" <> braces x
|
||||
let todelim x = case numdelim of
|
||||
OneParen -> x <> ")"
|
||||
TwoParens -> parens x
|
||||
|
|
Loading…
Reference in a new issue