this is the code i am using
Code: Select all
\documentclass[12pt,a4paper]{report}
\usepackage{natbib}
\usepackage{setspace}
\usepackage[dvipdfm]{graphicx}
\usepackage{color}
\usepackage{epsf}
\usepackage{amsfonts}
\usepackage{float}
\usepackage{fancyhdr}
\onehalfspacing
\oddsidemargin 0.0in \textwidth 6.5in
\pagestyle{fancy}
\begin{document}
\begin{titlepage}
\begin{center}
\vspace*{1in}
{\LARGE TITLE OF THE THESIS}
\par
\vspace{1.5in}
{\large Author name}
\par
\vfill
A Thesis submitted for the degree of Doctor of Philosophy
\par
\vspace{0.5in}
University of xxx
\par
\vspace{0.5in}
October 2008
\end{center}
\end{titlepage}
\renewcommand{\baselinestretch}{1.66}
\pagenumbering{roman}
\fancyhead[L]{}
\fancyhead[R]{Contents}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\begin{abstract}
\end{abstract}
\pagenumbering{arabic}
\chapter{Introduction}
\fancyhead[L]{Chapter 1}
\fancyhead[R]{Introduction}
\include{I}
\chapter{main thesis}
\fancyhead[L]{Chapter 2}
\fancyhead[R]{}
\include{II}
\chapter{Conclusions}
\fancyhead[L]{Chapter 10}
\fancyhead[R]{Conclusions}
\include{X}
\bibliographystyle{humannat}
\addcontentsline{toc}{chapter}{Bibliography}
\fancyhead[L]{}
\fancyhead[R]{Bibliography}
\bibliography{thesisbiblio}
\end{document}
Christina