LaTeX reader: Add unnumbered class for \part*.

Closes  #8447.
This commit is contained in:
John MacFarlane
2022-11-25 08:59:33 -07:00
parent fb5da4a8c6
commit f53ab3ca8c
+1 -1
View File
@@ -924,7 +924,7 @@ blockCommands = M.fromList
, ("dedication", mempty <$ (skipopts *> tok >>= addMeta "dedication"))
-- sectioning
, ("part", section nullAttr (-1))
, ("part*", section nullAttr (-1))
, ("part*", section ("",["unnumbered"],[]) (-1))
, ("chapter", section nullAttr 0)
, ("chapter*", section ("",["unnumbered"],[]) 0)
, ("section", section nullAttr 1)