我正在学习 Latex,我想知道是否可以在每章开头设置一个罗马数字。我的意思是,只需输入:
\chapter{}
结果必须是:每章开头的 I、II、III、IV、V。我试过:
\renewcommand{\thechapter}{\Roman{chapter}}
但我得到了“第一章”,“第二章”,所以我想从标题和目录中删除“章”这个词。
答案1
如果您使用 KOMA 脚本并且懂德语,您可以在这里找到答案:http://texwelt.de/wissen/fragen/3046/wie-kann-ich-mit-koma-script-das-kapitel-prafix-andern
以下可能大致就是您想要的:
\documentclass{scrbook}
\renewcommand*{\chapterformat}{%
\chapappifchapterprefix{\nobreakspace}\thechapter%
\autodot\enskip}
\begin{document}
\chapter{First}
Some text
\chapter{}
More Text
\end{document}
答案2
这是消除的另一种方法Chapter
\documentclass[%
chapterprefix=false % no "chapter" in title
]{scrbook}
\begin{document}
\chapter{First Chapter}
\end{document}