我首先在模式下编写了我的 tex 文件article
。现在我将文档类切换为report
,不幸的是,我想删除的部分和子部分前面有一个零。secnumdepth
完全更改会删除子部分的数字,但正如我所说,我只希望分散那个零。
我的代码是:
\documentclass [11pt,a4paper] {report}
\begin{document}
\setcounter{secnumdepth}{2}
\section{One}
\subsection{one-one}
\end{document}
答案1
部门单位的编号是固定的,<chapter>.<section>
并且已定义(在report.cls
) 作为
\renewcommand \thesection {\thechapter.\@arabic\c@section}
如果您希望修改并删除该<chapter>
组件,请添加
\renewcommand{\thesection}{\arabic{section}}
到您的文档序言中。