删除目录中的章节编号

删除目录中的章节编号

我开始在两个部分之后对文档进行编号,并希望将它们从目录中删除。

我所拥有的是以下内容: 在此处输入图片描述

我想获得:

在此处输入图片描述

这是我正在使用的乳胶脚本:

\documentclass[12pt,a4paper]{revtex4-1}
\usepackage{graphicx}% Include figure files
\usepackage{bm}% bold math
\usepackage[usenames]{color}
\usepackage[all]{xy}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage{placeins}
\usepackage{verbatim}
\usepackage[top=0.59in,bottom=0.59in,left=0.59in,right=0.59in]{geometry}
\usepackage{amssymb}
\usepackage{float}
\usepackage{multirow}
\setlength{\parindent}{0pt}
\setlength{\abovecaptionskip}{0pt plus 0pt minus 0pt}
\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\alph{subsection}}
\begin{document}
\thispagestyle{empty}
\newpage
\section*{Abstract}
\thispagestyle{empty}
Some text
\newpage
\section*{List of abbreviations}
\thispagestyle{empty}
Some text
\newpage
\thispagestyle{empty}
\setcounter{figure}{0} \renewcommand{\thefigure}{\arabic{figure}}
\setcounter{table}{0} \renewcommand{\thetable}{\arabic{table}}
\newpage
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\cleardoublepage
\thispagestyle{empty}
\newpage
\setcounter{page}{1}
\section*{Introduction}
Some text
\section*{Goals}
Some text
\end{document}

谢谢

答案1

显然,有些章节不应该出现在目录中(并且不应该删除章节编号),因此使用\tocdepth@munge\tocdept@restore命令,写入ToC

\documentclass[12pt,a4paper]{revtex4-1}
\usepackage{graphicx}% Include figure files
\usepackage{bm}% bold math
\usepackage[usenames]{color}
\usepackage[all]{xy}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage{placeins}
\usepackage{verbatim}
\usepackage[top=0.59in,bottom=0.59in,left=0.59in,right=0.59in]{geometry}
\usepackage{amssymb}
\usepackage{float}
\usepackage{multirow}
\usepackage{blindtext}
\setlength{\parindent}{0pt}
\setlength{\abovecaptionskip}{0pt plus 0pt minus 0pt}
\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\alph{subsection}}
\begin{document}
\thispagestyle{empty}
\clearpage
\makeatletter
\addtocontents{toc}{\string\tocdepth@munge}
\section*{Abstract}
\thispagestyle{empty}
Some text
\clearpage
\section*{List of abbreviations}
\thispagestyle{empty}
\addtocontents{toc}{\string\tocdepth@restore}
\makeatother
Some text
\newpage
\thispagestyle{empty}
\setcounter{figure}{0} \renewcommand{\thefigure}{\arabic{figure}}
\setcounter{table}{0} \renewcommand{\thetable}{\arabic{table}}
\clearpage

\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\cleardoublepage
\thispagestyle{empty}
\clearpage
%\setcounter{page}{1}
\section{Introduction}
\blindtext[5]
\section{Goals}
\blindtext[5]
\end{document}

在此处输入图片描述

相关内容