最後の \part の「外側」に章を定義する (amsbook)

最後の \part の「外側」に章を定義する (amsbook)

現在、私は次のものを所有しています:

\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 によって表示されるブックマーク パネル:

ここに画像の説明を入力してください

関連情報