在乳胶中隐藏Toc的条目

时间:2010-05-06 23:42:13

标签: latex tableofcontents

我想知道如何隐藏目录中的一个部分,但不会丢失文档正文中的部分编号。例如,在此 tex 文件中,我丢失了hide的数字,并且所有序列都已损坏:

\documentclass{article}

\begin{document}
\tableofcontents
\section{uno}
\section{dos}
\section*{hide}
\section{tres}
\end{document}

3 个答案:

答案 0 :(得分:52)

我认为你在寻找

\section*{hide}
\addtocounter{section}{1}

或将其变为命令:

\newcommand{\toclesssection}[1]{\section*{#1}\addtocounter{section}{1}}

编辑:

好吧,我想我理解现在想要的东西(而且它比我给出的答案更有意义)。这是一个命令,您可以使用该命令来禁止向TOC添加节,子节等。我们的想法是暂时禁用\addcontentsline

\newcommand{\nocontentsline}[3]{}
\newcommand{\tocless}[2]{\bgroup\let\addcontentsline=\nocontentsline#1{#2}\egroup}
...
\tocless\section{hide}
\tocless\subsection{subhide}

答案 1 :(得分:4)

只想感谢Ivans的大力提示! (我只是在谷歌搜索我的自定义(子)附录{}命令类似的东西:

\newcommand{\nocontentsline}[3]{}
\newcommand{\tocless}[2]{\bgroup\let\addcontentsline=\nocontentsline#1{#2}\egroup}

\newcommand{\Appendix}[1]{
  \refstepcounter{section}
  \section*{Appendix \thesection:\hspace*{1.5ex} #1}
  \addcontentsline{toc}{section}{Appendix \thesection}
}
\newcommand{\SubAppendix}[1]{\tocless\subsection{#1}}

也许这对其他人也很有用......)

答案 2 :(得分:2)

刚从a similar question.来到这里上面的答案不太合适,因为它给出了一些格式化问题,但是similar solution似乎可以解决这个问题