My question is, why is the header in my 'List of Symbols' and in my 'Abstract' shows 'LIST OF TABLES', instead of 'List of Symbols' and 'Abstract' respectively? What can I do to correct this?
Many thanks!
Code: Select all
\documentclass[a4paper,oneside]{book}
\usepackage{blindtext}
\begin{document}
\frontmatter
%% Declaration page
\newpage
\chapter*{Declaration}
\blindtext
%% Acknowledgement page
\chapter{Acknowledgement}
\blindtext
%% Table of contents
\tableofcontents
%% List of figures
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
%% List of tables
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
%% List of symbols
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Symbols}
\chapter*{List of Symbols}
\Blindtext[10]
%% Main content
\mainmatter
%% Thesis abstract
\addcontentsline{toc}{chapter}{Abstract}
\chapter*{Abstract}
\Blindtext[10]
\Blinddocument
\end{document}