I have an appendix with multiple chapters, while I like it that the main chapters of the document appear on the highest hierarchy level in the bookmarks, I would like the appendix chaptes to be children of the appendix bookmark. It would be even better if i could prefix the chapter number
I have this for the bookmarks
Appendices
Additional Images
Additional Code
and would like this
Appendices
|-A Additional Images
|-B Additional Code
MNWE
\documentclass{report}
\usepackage{hyperref}
\usepackage[toc,page]{appendix}
\begin{document}
\begin{appendices}
\chapter{Additional Images}
blah
\chapter{Additional Code}
\end{appendices}
\end{document}

bookmarksopenlevel=0behaves oddly with this, for all chapters before the appendix it shows them collapsed, however theAppendicesbookmark is open. While I like this behaviour, could explain it/ how to change it? – ted Jun 29 '13 at 23:27Appendicesis a part entry. If you want to have the bookmarks collapsed, just use the default or\bookmarksetup{open=false}or\bookmarksetup{openlevel=-1}. – Heiko Oberdiek Jun 30 '13 at 00:03A Additional imagesin your answer, It goes to cover page instead. Is there any further option needed here? – enthu Nov 11 '14 at 16:06pdflatexordvips/ps2pdf. How do you compile the example? Are the packages up-to-date? – Heiko Oberdiek Nov 11 '14 at 17:50\appendixafter\begin{appendices}with aid of\bookmarksetup{startatroot}– enthu Nov 12 '14 at 08:52\bookmarksetup{startatroot}before the bibliography. – Heiko Oberdiek Mar 20 '17 at 17:32