附录标题位于附录列表之前

附录标题位于附录列表之前

我的目录具有以下形式:

1. Foo ............................. 1
2. Boo ............................. 2
A. something 1 ..................... 3
B. something 2 ..................... 4

但我希望它看起来如下:

1. Foo ............................. 1
2. Boo ............................. 2
Appendices
A. something 1 ..................... 3
B. something 2 ..................... 4

scrbook如果有什么不同,我就会用。

答案1

使用 KOMA-Script 您可以使用:

\addcontentsline{toc}{chapter}{Appendices}

更新:如果您希望将标题附录也打印为自己的页面,您可以使用:

\usepackage{hyperref}   

\phantomsection                            % hyperref jumps to this point
\chapter*{Appendices}\label{sec:Anhang}    % no entry in toc
\addcontentsline{toc}{chapter}{Appendices} % entry in toc without numbering

更新 2:要获取Appendices没有页码的目录,请使用:

\addchap*{Appendices}
\addtocontents{toc}{\protect\usekomafont{chapterentry}{Appendices}}

更新 3:为了确保目录中的页面没有编号,您可以使用这种“强力”方法:

\addchap*{Appendices}
\addtocontents{toc}{\protect\contentsline {chapter}{Appendices}{}{}}

相关内容