ドキュメントに表示せずに目次に付録を追加する

ドキュメントに表示せずに目次に付録を追加する

私はarticleクラスで作業しており、ドキュメント自体に実際の付録を作成せずに、目次に 2 つの付録について言及したいと考えています。また、TOC のこれらのエントリがどのページも参照しないようにしたいと考えています (当然、ドキュメントには参照する付録がないため)。これらを実現するにはどうすればよいでしょうか。

編集:

私が使用するコード(簡略版)は次のとおりです。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{biblatex}
\usepackage[dutch]{babel}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{listings}
\usepackage[title,titletoc]{appendix}
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{hyperref}

\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}

\lstdefinestyle{mystyle}{
    backgroundcolor=\color{backcolour},   
    commentstyle=\color{codegreen},
    keywordstyle=\color{blue},
    numberstyle=\tiny\color{codegray},
    stringstyle=\color{codepurple},
    basicstyle=\footnotesize,
    breakatwhitespace=false,         
    breaklines=true,                 
    captionpos=b,                    
    keepspaces=true,                 
    numbers=left,                    
    numbersep=5pt,                  
    showspaces=false,                
    showstringspaces=false,
    showtabs=false,                  
    tabsize=2
}

\lstset{style=mystyle,language=Python}

\title{title}
\author{bla}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
bla bla

\end{abstract}
\pagebreak
\tableofcontents

\pagebreak
\section{sections}
bla bla

\pagebreak
\begin{thebibliography}{9}
\bibitem{someitem}
something

\end{thebibliography}

\pagebreak

\appendix

\addtocontents{toc}{\protect\contentsline{section}{Appendix One}{}{}}
\addtocontents{toc}{\protect\contentsline{section}{Appendix Two}{}{}}

\addtocontents{toc}{Appendix One}

\end{document}

編集2:

コメント内の提案を拡張した次のコード行を使用した回避策を見つけました。

\addtocontents{toc}{\textcolor{white}{}\\ \textbf{Appendix A: bla bla}\\\textcolor{white}{}\\ \textbf{Appendix B: bla bla}}

答え1

セクションエントリのように特定の形式を維持する必要がある場合は、

\addtocontents{toc}{\protect\contentsline{section}{Appendix One}{}{}}

最初の空の{}ペアは通常、\addcontentslineページ番号を保持するために によって埋められ、空のペアはハイパーアンカーとして{}によって使用されます。が含まれていない場合、2 番目はそこに害を与えません。hyperrefhyperref{}

\documentclass{article}


\usepackage{hyperref}
\begin{document}
\tableofcontents


\section{First section}

\appendix

\addtocontents{toc}{\protect\contentsline{section}{Appendix One}{}{}}
\addtocontents{toc}{\protect\contentsline{section}{Appendix Two}{}{}}

\end{document}

ここに画像の説明を入力してください

番号形式が要求された場合は、それ\numberline{}を適用して、すべてを 1 つの単純なマクロにキャストすることもできます。

\phantomappendix*タイトルのみ追加します

\phantomappendixタイトルと先頭の番号を追加します。

\documentclass{article}

\usepackage{xparse}
\newcounter{phantomappendix}
\renewcommand{\thephantomappendix}{\Alph{phantomappendix}}

\NewDocumentCommand{\phantomappendix}{sm}{%
  \IfBooleanTF{#1}{%
    \addtocontents{toc}{\protect\contentsline{section}{#2}{}{}}
  }{%
    \refstepcounter{phantomappendix}% Just in case we want to refer to it
    \addtocontents{toc}{\protect\contentsline{section}{\protect\numberline{\thephantomappendix}#2}{}{}}
  }%
}


\usepackage{hyperref}
\begin{document}
\tableofcontents
\section{First section}
\appendix

\phantomappendix*{Appendix One}
\phantomappendix{Appendix Two}
\end{document}

ここに画像の説明を入力してください

関連情報