如何从目录中删除章节编号?我的文档类别是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