I am writing my thesis and I have noticed something rather odd..
I have an appendix with some text in it and after that I have a list of abreviations.
The List of ABreviations is currently two pages long. The first page looks fine, it has the big heading that all new chapters have. The second page however has should have the name of the current chapter in the top right corner of the page. Only that it is not showing the title for the list of abreviations but that of the last chapter of the appendix (see the images in the attached zip-archive). I am using an document class that is based on scrreprt but hsa abeen altered by someone at my university.
\begin{document}
\pagenumbering{roman}
\maketitle
\include{Abstract}
\acresetall
\cleardoublepage
\tableofcontents
\cleardoublepage
\pagenumbering{arabic}
\include{Einleitung}
% Inlcuding all the chapters
\include{Fazit}
\cleardoublepage
\appendix
\chapter{Multicastadressen}
\label{app:Multicastadressen}
Intersting Stuff about Multicast
\chapter{PTP-Spezifikation}
\label{app:PTP}
\begin{verbatim}
Interesting file in a verbatim enviroment
\end{verbatim}
\chapter*{\glossarytitlename}
\begin{acronym}[ABCDEFGHIJK]
\acro{ARP}{Address Resolution Protocol}
% Many more acronyms
\end{acronym}
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\bibliographystyle{IEEEtran}
%\bibliographystyle{unsrtdin}
\bibliography{references}
\end{document}