When using the package appendix together with e.g. scrbook class \addappheadtotoc uses a chapter style Appendices entry in the toc and bookmarks.
How do I change this such that the Appendices entry is raised to part level in both, toc and bookmarks?
Here is a minimal working example:
\RequirePackage[l2tabu,orthodox]{nag}
\documentclass[a4paper,11pt]{scrbook}
\usepackage[toc,title,page]{appendix}
\usepackage{bookmark,hyperref}
\begin{document}
\frontmatter%
\tableofcontents%
\mainmatter%
\part{p}
\chapter{c}
\section{s}
\part{p}
\chapter{c}
\section{s}
\appendices%
\chapter{c}
\section{s}
\backmatter%
\end{document}
\crefalias{section}{appendix}and so on. – Stefan Jan 08 '21 at 11:02\crefalias(as I messed something up in the first place) I reverted and accepted the other answer again. Simply because he was faster in the first place and I can only accept one answer. Thanks for providing a second possibility anyways. – Stefan Jan 09 '21 at 19:45