抱歉,标题不好,但我实在想不出更好的了。我的 Latex 文档的节层次结构存在问题:
这是我的文档结构:
\begin{document}
[...]
\part{ Conclusion}
\chapter{Conclusion and Future Work}
\section{Summary}
\section{Answers to Research Questions}
\section{Future Work}
\backmatter
\listoffigures
\listoftables
\listofalgorithms
\addcontentsline{toc}{chapter}{List of Algorithms}
\printindex
\printglossaries
\bibliographystyle{alpha}
\bibliography{thesis}
\chapter{Curriculum Vitae}
\end{document}
下图显示了在 Adobe Acrobat 中打开 PDF 后的层次结构:
正如你所见,一切始于图片列表属于结论章节。不过,我希望它与结论。
有趣的是,在目录中它被打印出来,因为我希望在上面的文档层次结构中也看到它(编辑:我想我在这里得出了一个错误的结论。这些部分(即,图片列表等)没有编号。事实上,它们仍然可能被归类在结论部分):
非常感谢您的帮助。
答案1
好的,下面的方法成功了(来源:将部分移出零件):
\usepackage{bookmark}
[...]
\bookmarksetup{startatroot}
在您想要开始新根的地方使用\bookmarksetup{startatroot}
。在我的例子中,紧接着\backmatter
:
\begin{document}
[...]
\part{ Conclusion}
\chapter{Conclusion and Future Work}
\section{Summary}
\section{Answers to Research Questions}
\section{Future Work}
\backmatter
\bookmarksetup{startatroot}
\listoffigures
\listoftables
\listofalgorithms
\addcontentsline{toc}{chapter}{List of Algorithms}
\printindex
\printglossaries
\bibliographystyle{alpha}
\bibliography{thesis}
\chapter{Curriculum Vitae}
\end{document}
结果如下:
目录看起来像以前一样: