In my thesis in the frontmatter I got the list of figures (LoF) which is 2 pages long. Following it, the list of abbreviated terms (LoA) follows. It is 2 pages long as well. Now on the first page of the LoA, everything is fine. On the second page however, the chapter name in heading is "List of figures"

I am inserting my LoF and LoA with
Code: Select all
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\include{abbreviations}
Code: Select all
\chapter*{List of abbreviated terms}
\label{abbr}
\addcontentsline{toc}{chapter}{List of abbreviated terms}\appendix
Here is my minimal example:
Code: Select all
\documentclass[envcountsame,envcountchap,a4paper,openany]{svmono}
% UNcomment the following line for ENGLISH figure captions etc.
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{fancyhdr}
\graphicspath{{./figures/}}
\begin{document}
\setcounter{page}{1}
\pagenumbering{Roman}
\pagestyle{fancy}
\setcounter{page}{1}
\pagenumbering{Roman}
\listoffigures
\chapter*{chapter1}
Page 1
\newpage
Page 2
\newpage
Page 3
\end{document}