在我的论文中,考官需要章节编号从 0 开始,而不是从 1 开始。
结构有点像
\documentclass[12pt]{report}
\begin{document}
\chapter{First}
\section{first section}
\subsection{subsection}
\end{document}
这给了我结果
第1章
第一的
1.1 第一节
1.1.1 小节
我需要的不是这个
第1章
第一的
1.0第一节
1.0.1 小节
我尝试使用
\setcounter{section}{-1}
前
\begin{document}
但没有成功。
答案1
每个命令\chapter{}
都会重置计数器部分。通常每个人都希望以 1 开始新的编号部分。不过,您必须在章节标题后更改它。我希望这解释得足够详细?
以下 MWE 将适合您:
\documentclass{report}
\begin{document}
\chapter{First}
\setcounter{section}{-1}
\section{first section}
\subsection{subsection}
\end{document}