I am writing my PhD dissertation, I am using the natbib package so that I have more in-line citing options. I am using a .sty file provided by a former student of my university.
We are required to have page numbers in the upper right, but for the first page of my bibliography the page number is centered in the footer. I have tried a multitude of things to correct it. Here is my main thesis document:
Code: Select all
\documentclass[12pt]{report}
%include all the standard packages
\usepackage{myUniversitysStyleFile}
\usepackage[round]{natbib}
\begin{document}
\include{all my chapters}
\addtocontents{toc}{\protect\vspace{\li}}
\biblio{mythesisbibfile}
\end{document}
Code: Select all
\newcommand{\biblio}[1]{
\addcontentsline{toc}{head}{REFERENCES}
\doublespace\normalsize
\thispagestyle{myheadings}
\bibliographystyle{plainnat}
\bibliography{#1}
}
Code: Select all
\def\thebibliography#1{\chapter*{References\markboth
{REFERENCES}{REFERENCES}}\list
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}
\thispagestyle{myheadings}
\leftmargin\labelwidth
\raggedbottom
\advance\leftmargin\labelsep
\usecounter{enumi}}
\itemsep 7pt
\def\newblock{\hskip .11em plus .33em minus -.07em}
\sfcode`\.=1000\relax
}