I was about to finish my thesis and I couldn't make the following parts the same as the university guide line(which is in PDF

- All page numbers should be on the top center of each page. I was successful in other parts of the thesis except at the beginning of ToC, LoF, LoT and References page in which the page numbers appear on the bottom center of the page.
- Exceptionally the first pages of ToC, LoF, LoT and References parts have bigger top margin than the others and I cant manage it to reduce with vertical spacing commands.
- In the list of References, References have to be separated by a blank line.
Code: Select all
\documentclass[a4paper,12pt, oneside, openany]{book}
\usepackage[utf8]{inputenc}
\usepackage[round]{natbib}
\usepackage[OT1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[top=3.5cm, bottom=3cm, left=3cm, right=3cm, textwidth = 15cm ]{geometry}
\renewcommand*{\contentsname}{TABLE OF CONTENTS}
\renewcommand*{\listfigurename}{LIST OF FIGURES}
\renewcommand*{\listtablename}{LIST OF TABLES}
\renewcommand*{\bibname}{REFERENCES}
\begin{document}
\tableofcontents
\clearpage
\listoffigures
\addcontentsline{toc}{section}{LIST OF FIGURES}
\clearpage
\listoftables
\addcontentsline{toc}{section}{LIST OF TABLES}
%Bibilography
\setlength{\bibhang}{1cm}
\setlength{\itemsep}{1.5cm}
\renewcommand*{\bibname}{\normalfont \normalsize REFERENCES}
\bibliographystyle{plainnat}
\bibliography{mybib}
\addcontentsline{toc}{section}{\hspace*{1cm}REFERENCES}
\end{document}