从目录中删除章节编号

从目录中删除章节编号

如何从目录中删除章节编号?我的文档类别是article

\documentclass[a4paper]{article}
\begin {document}
\tableofcontents
\section{one}
test text number one
\section{two}
test text number two
\end{document}

在此处输入图片描述

答案1

您可以使用该titlesec/titlestoc包轻松完成此操作。它具有允许在目录中对编号和未编号部分(如果您想添加未编号部分)进行不同格式设置的命令:

\documentclass[a4paper]{article}
\usepackage{titletoc}

\begin {document}
\titlecontents{section}[0em]
{\vskip 0.5ex}%
{\scshape}% numbered sections formatting
{\itshape}% unnumbered sections formatting
{}%

\tableofcontents

\section{A First Section}
Test text number one. 

\section{Another Section}
Test text number two. 

\section*{An Unnumbered Section}
Test text number three. 
\addcontentsline{toc}{section}{An Unnumbered Section}
\end{document} 

在此处输入图片描述

答案2

\makeatletter按照 Astrinus 的建议,您可以在和之间添加两行代码\makeatother,如下所示egreg 的回答,以修改目录中的条目。操作方法如下:

\documentclass[12pt, a4paper]{article}

\makeatletter
\let\latexl@section\l@section
\def\l@section#1#2{\begingroup\let\numberline\@gobble\latexl@section{#1}{#2}\endgroup}
\makeatother

\begin{document}
\tableofcontents
\newpage
\section{One}
test text number one
\section{Two}
test text number two
\end{document}

请注意,您应该\newpage确保\tableofcontents

在此处输入图片描述

相关内容