web-dev-qa-db-ja.com

ラテックスのTocからエントリを非表示にします

目次からセクションを非表示にする方法を知りたいのですが、ドキュメントの本文のセクション番号を失うことはありません。たとえば、このtexファイルでは、hideの数値を失うと、すべてのシーケンスが破損します。

\documentclass{article}

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

あなたが探していると思う

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

またはそれをコマンドにします:

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

編集:

OK TOCへのセクション、サブセクションなどの追加を抑制するために使用できるコマンドを次に示します。アイデアは、一時的に\addcontentsline

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

Ivansの素晴らしいヒントに感謝したいだけです! (カスタマイズした(Sub)Appendix {}コマンドに似たものを探していました:

\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}}

たぶん、これは他の誰かにとっても便利です...)

4
Daniel

同様の質問 からここに来ただけです。上の答えはフォーマットの問題をもたらしたのでうまくいきませんでしたが、 類似の解決策 はトリックをするようでした

2
second