我正在與article
班級合作,我想在我的目錄中提及兩個附錄,而不是在文件本身中製作實際的附錄。另外,我希望目錄中的這些條目不會引用任何頁面(顯然,因為文件中沒有附錄可供引用)。我怎麼才能讓這些事情發生呢?
編輯:
這是我使用的程式碼(簡化版本):
\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
保存頁碼,空{}
對用於hyperref
超錨點。如果hyperref
不包括在內,則第二個{}
不會造成任何損害。
\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{}
也可以套用,全部轉換為一個簡單的巨集:
\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}