I need to insert a separate appendix page before my appendices chapters. Therefore, I am using \appendixpage from the appendix package. However, the font style of the 'Appendices' headline on the appendix page does not match the headline style of the KOMA class scrreprt (which I want to keep).
Below is a minimum working example for demonstration:
Code: Select all
\documentclass {scrreprt}
\usepackage{appendix}
\begin{document}
\chapter{Chapter}
Text1
\appendix
\appendixpage
\chapter{Appendix}
Text2
\end{document}
but it does not have any effect. Please help !
(P.S. Its my first post here)