\chapter 声明中缺少数字?

\chapter 声明中缺少数字?

此 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}

相关内容