此 MWE 可能也M,但是我不断地减少,但仍然会产生我得到的错误,而且只会产生我得到的错误。
该代码可以编译,但在倒数第二行抛出两个“缺失数字,视为零”错误。
我错过了什么?
\documentclass[]{book}
\begin{document}
\renewcommand{\thechapter}{\Roman{}}
\chapter[Title]{I}
\end{document}
答案1
我错过了什么?
命令\Roman
、\roman
、\alph
、\Alph
和\arabic
接受一个参数——柜台多变的。
由于您似乎试图更改chapter
-level 条目的外观,因此chapter
您需要更改计数器变量。简而言之,请替换
\renewcommand{\thechapter}{\Roman{}}
和
\renewcommand{\thechapter}{\Roman{chapter}}
\documentclass[]{book}
\renewcommand{\thechapter}{\Roman{chapter}}
\begin{document}
\chapter[Title]{I}
\end{document}