我正在尝试设置一个带有浮点数的计数器章节,如下所示:
\setcounter{chapter}{2.3}
此时我收到此错误 alc 错误:'.' 无效。
答案1
计数器只接受整数值,因此请尝试以下操作:
\setcounter{chapter}{2}
\setcounter{section}{3}
\section{Your Headline} % This is section 2.4
或者
\setcounter{chapter}{2}
\setcounter{section}{2}
\section{Your Headline} % This is section 2.3