Introduction
+Part I
+Part II
Bibliography
+Appendices
Glossary
What I'm getting is:
Introduction
+Part I
+Part II
Bibliography
Appendices
Appendix A
Appendix B
Appendix C
Glossary
If I understand correctly, memoir's appendix command redefines \chapter so that the label appears as Appendix (but I still started each appendix with a \chapter command).
So the levels for bookmarks should be: Part = -1, Chapter = 0 (also for Appendix), Section = 1. After studying the bookmark documentation, I thought that the following code would work:
Code: Select all
[end of the last chapter]
\bookmarksetup{startatroot}
\bibliography{bibdata}
\appendix
\appendixpage
\bookmarksetup{level=0}
\chapter{Appendix A}
text of appendix A
But the Appendix A, B, and C appear on their own, not as children of the Appendices bookmark. I have tried all sorts of variations on this and also using \rellevel. I also tried setting the bookmarks manually in the appendix chapters but got two bookmarks for each. What I need to do is tell bookmark to make the appendix chapters be one level down (and therefore, presumably, not displayed) but I am obviously missing something. (This is my first time using bookmark.) I'd appreciate any help.
David