I am having a slight problem with the header from my List of Figures carrying over into the next chapters. I have tried setting the headers at the start of the chapter but it doesn't have the desired effect. The following is the preamble etc for my doc
Code: Select all
\documentclass[12pt]{report}
\usepackage{upgreek}
\usepackage[small]{caption}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{amsmath}
\usepackage{appendix}
\usepackage{listings}
\usepackage{fancyhdr}
\usepackage{subfigure}
\usepackage{longtable}
%\usepackage{subfig}
\usepackage{tabularx}
%\usepackage[sectionbib]{bibunits}
\usepackage[square,sectionbib,numbers]{natbib}
\usepackage{chapterbib}
\usepackage{geometry}
%\usepackage[pdftex, bookmarks=true]{hyperref}
\geometry{top=20mm, bottom=20mm, left=35mm, right=20mm}
\linespread{1.5}
\begin{document}
\include{title}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\rhead{ \thepage} % except the right top corner
\lhead{\nouppercase{\rightmark}}
}
\pagestyle{plain}
\tableofcontents
\pagenumbering{roman}
\listoffigures
\include{symbols}
\include{greek}
\include{const}
\include{intro }
\include{theory}
\include{chapter3}
\include{chapter6}
\include{apps}
\bibliographystyle{ieeetr}
\renewcommand\bibname{{References}}
\addcontentsline{toc}{chapter}{References}
\bibliography{thesis}
%\addcontentsline{toc}{chapter}{References}
\end{document}
I start each of the first three chapters the same way
Code: Select all
\begin{center}
\chapter*{List of Symbols} \addcontentsline{toc}{chapter}{List of Symbols}
\end{center}
All help greatly appreciated
