I'm having some problems getting my headers to appeaper like I want them.
I want each page (except the title) to have a header with the chapter name and page number, and a footer with "DRAFT". For the most part I can do this... except for the first few parts.
My abstract, extended abstract and abbreviations have page numbers and a header line but no chapter names.
My TOC and LOF have the correct header, but not on the first page, here there is no header, just a footer with the page number in the centre.
The confusing thing is my list of tables... (only one page), has the correct header.
My main chapters are fine, but the problem reappears on the first page of the bibliography
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setlength{\headheight}{15pt}
\fancyhead[L]{\leftmark}
\fancyhead[R]{\thepage}
\fancyfoot[LCR]{DRAFT}
\renewcommand\headrulewidth{0.5pt}
\begin{document}
\doublespacing{}
\linenumbers
\title{``Thesis''}
\author{M. Y. Name}
\date{2008}
\maketitle{}
\pagenumbering{roman}
\begin{abstract}
\thispagestyle{fancy}
\addcontentsline{toc}{chapter}{Abstract}
Blah, blah, blah, blah.....
\end{abstract}
\include{extended_abstract}
\include{acknowledgements}
\include{abbreviations}
\tableofcontents
\thispagestyle{fancy}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\thispagestyle{fancy}
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\thispagestyle{fancy}
\pagenumbering{arabic}
\include{introduction}
\include{theory}
\include{results}
\include{conclusions}
\bibliographystyle{apalike}
\bibliography{Thesis_Refs}
\end{document}
i Abstract
i Extended abstract
ii Acknowledgements
iv Abbreviations
vii TOC
xi LOF
1 LOT
2 Intro
The first two pages should be consequtive and Intro should be page "1".
I've tried a few things, mostly different positions of "\thispagestyle{fancy}" and "\pagenumbering{}".
Bit of a long post, but any help would be appreciated.