我有一个奇怪的问题。我的子部分编号如下:
第 1 章:第 1.0.1 节第 1.0.2 节第 1.0.3 节
第 2 章:第 2.0.4 节第 2.0.5 节
...
第十章:第十.0 小节。
我不知道如何开始修复此错误。我收到的唯一警告是:
Chapter1.tex(1): Underfull \vbox (badness 10000) has occurred while \output is activepdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
Chapter1.tex(26): destination with the same identifier (name{page.2}) has been already used, duplicate ignored
但我怀疑这与问题无关。欢迎提出任何想法。
答案1
您使用了分段命令\chapter
(级别 0)和\subsection
(级别 2),但没有使用“中间”命令\section
(级别 1)。这种情况并不常见,可能是您的误解。
如果你坚持使用\subsection
这种方式,你必须subsection
在新的开始后立即手动重置计数器\chapter
。参见重置定理计数器:\section 和(缺失)\subsection寻求解释。
\documentclass{report}
\begin{document}
\chapter{bla}
\setcounter{subsection}{0}
\subsection{blubb}
\chapter{foo}
\setcounter{subsection}{0}
\subsection{bar}
\end{document}