目前,我有以下内容:
\documentclass{amsbook}
\begin{document}
\chapter*{Introduction}
\part{First Part}
\chapter{1}
\chapter{2}
\chapter{3}
\part{Second Part}
\chapter{4}
\chapter{5}
\chapter*{Conclusion}
\end{document}
目录很完美。我唯一关心的是如何在我的 pdf 查看器侧面板中看到内容。目前它显示:
Introduction
Part 1
Chapter 1
Chapter 2
Chapter 3
Part 2
Chapter 4
Chapter 5
Conclusion
然而,我真正想要的是以下内容,其中“结论”位于最后的 \part 之外。
Introduction
Part 1
Chapter 1
Chapter 2
Chapter 3
Part 2
Chapter 4
Chapter 5
Conclusion
答案1
您可以使用bookmark
包裹:
\documentclass{amsbook}
\usepackage{bookmark}
\begin{document}
\chapter*{Introduction}
\part{First Part}
\chapter{1}
\chapter{2}
\chapter{3}
\part{Second Part}
\chapter{4}
\chapter{5}
\bookmarksetup{startatroot}
\chapter*{Conclusion}
\end{document}
Okular 显示的书签面板: