I currently have the following code:
Code: Select all
\documentclass[a4paper, 12pt, twoside, openright]{report}
\usepackage{upgreek}
\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{geometry}
\geometry{top=20mm, bottom=20mm, left=35mm, right=20mm}
\linespread{1.5}
%\usepackage{bookmark}
\begin{document}
\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}
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\include{symbols}
\include{greek}
\include{const}
\end{document}
symbols.tex
Code: Select all
\clearpage%
\markright{List of Symbols}%
\addcontentsline{toc}{chapter}{List of Symbols}%
\chapter*{List of Symbols}
Code: Select all
\clearpage%
\markright{List of Greek Symbols}%
\addcontentsline{toc}{chapter}{List of Greek Symbols}%
\chapter*{List of Greek Symbols}
Code: Select all
\clearpage%
\markright{Physical Constants}%
\addcontentsline{toc}{chapter}{Physical Constants}%
\chapter*{Physical Constants}
Anyone know how to change this so the left hand page displays the correct heading.