我有以下 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 Fruits
,II 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}