无编号的部分

无编号的部分

有人知道如何消除 D 和 E 节的编号吗?这样,D 节或 E 节的标题本身就应该正好从行首开始?此外,节号不应出现在目录中,而应正好从相应行的开头开始。提前致谢!

\documentclass[12pt]{article}

\begin{document}
\newpage
\tableofcontents
\section {Section A}
\section {Section B}
\section {Section C}
\section {Section D}
\section {Section E}
\end{document}

答案1

您还可以使用\setcounter{secnumdepth}{0}来删除数字:

\documentclass[12pt]{article}

\begin{document}
\tableofcontents
\section{Section A}
\section{Section B}
\section{Section C}
\setcounter{secnumdepth}{0} %% no numbering
\section{Section D}
\setcounter{secnumdepth}{1} %% Start numbering again
\section{Section E}

\end{document}

相关内容