节号和标题之间的标签分隔符为 0pt

节号和标题之间的标签分隔符为 0pt

我正在使用 mitthesis 类撰写论文。但是,章节和小节的编号不是我想要的。现在我的文档有这个编号,但 X.0.X 和 X.0.Y 中的 0 不应该在那里。我该如何解决这个问题?目前:第 1 章简介第 1.0.1 小节 1.0.2 小节

应该是:第 1 章简介第 1.1 小节第 1.2 小节我的代码是

\documentclass[12pt,twoside]{mitthesis}
\usepackage{lgrind}
\pagestyle{plain}
\begin{document}
\pagestyle{plain}
\pagenumbering{roman}
\include{acknowledgments}
%\include{contents}
%\setcounter{page}{3}
\newpage
\pagenumbering{arabic}
\include{chap1}
\include{chap2}
\appendix
%\include{appa}
%\include{appb}
\include{bib}
\end{document}

我该如何解决它?我搜索过,但找不到最相关的解决方案来解决我的问题。PS:我刚开始使用 LaTex。谢谢

答案1

我假设您正在使用\chapter\subsection但没有使用\section

中间0是部分计数器,由于没有\section命令,因此仍为 0。

相关内容