将附录放在最后一部分之外

将附录放在最后一部分之外

我有以下 LaTeX 结构:

\documentclass{book}

\usepackage{hyperref}

\begin{document}

\tableofcontents

\chapter{Introduction}

\part{Fruits}
\chapter{The Apple}
\chapter{The Peach}
\chapter{The Banana}

\part{Animals}
\chapter{The Dog}
\chapter{The Cat}
\chapter{The Horse}

\appendix
\addcontentsline{toc}{chapter}{Appendices}

\chapter{Summary}
\chapter{Bibliography}

\end{document} 

问题在于最终 pdf 中书签的结构:所有附录都位于第 II 部分中。

书签结构

是否可以将 放到Appendices最外层,即与 平行I FruitsII Animals而不是 内部II Animals

我想保留现在的目录编号,即附录内的章节没有编号:

目录

提前致谢!

答案1

使用\addcontentsline{toc}{part}{Appendices}而不是\addcontentsline{toc}{chapter}{Appendices}

或者使用该appendix包。

\documentclass{book}

\usepackage{hyperref}

\begin{document}

\tableofcontents

\chapter{Introduction}

\part{Fruits}
\chapter{The Apple}
\chapter{The Peach}
\chapter{The Banana}

\part{Animals}
\chapter{The Dog}
\chapter{The Cat}
\chapter{The Horse}

\cleardoublepage
\phantomsection
\appendix
\addcontentsline{toc}{part}{Appendices}
\chapter{Summary}
\chapter{Bibliography}

\end{document} 

在此处输入图片描述

相关内容