University of Nottingham Thesis Template for PhD Degree
Author
Chao Zhang
Last Updated
há 5 anos
License
LaTeX Project Public License 1.3c
Abstract
This is a thesis template for PhD degree of the University of Nottingham.
This is a thesis template for PhD degree of the University of Nottingham.
% -------------------------------------------
% Authored by Chao Zhang, July 2019
% This is a thesis template for PhD degree of the University of Nottingham.
% -------------------------------------------
\documentclass[a4paper,12pt,twoside]{report}
\usepackage[left=3cm,right=2.5cm,top=2cm,bottom=2.5cm]{geometry}
\usepackage{multirow}
\include{thesis.preamble}
%% Sets up the area of text on your page
\textwidth 14cm
\textheight 25cm
\oddsidemargin=1.8cm
\evensidemargin=1.8cm
\begin{document}
% -------------------------------------------
% [-] Title Page
% -------------------------------------------
\title{
Your Thesis Title
}
\author{Your Name}
\submitdate{September 2018}
%\degree{Doctor of Philosophy}
%\studentid{}
%\supervisor{}
\normallinespacing
\maketitle
% -------------------------------------------
% [-] Preface Pages
% -------------------------------------------
% including and ordered by:
% 1. a front page
% 2. Abstract
% 3. Acknowledgements
% 4. List of Publications
% 5. Contents
% 6. List of Tables
% 7. List of Figures
\preface
\input{prefaces/abstract}
\input{prefaces/acknowledgements}
\input{prefaces/list_of_publications}
% -------------------------------------------
% [-] Main Body
% -------------------------------------------
% body of thesis goes here.
\body
% [-] Introduction
\input{body/chapter1}
% [-] Literature Review
\input{body/chapter2}
% [-] Technical Chapter 1:
\input{body/chapter3}
% [-] Technical Chapter 2:
\input{body/chapter4}
% [-] Technical Chapter 3:
\input{body/chapter5}
% [-] Technical Chapter 4:
\input{body/chapter6}
% [-] Conclusion
\input{body/chapter7}
% -------------------------------------------
% [-] Bibliography and Appendix
% -------------------------------------------
\clearpage
\newpage
\begin{spacing}{1.0}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{IEEEtran}
\bibliography{myBibs.bib}
% appendices come here
\input{appendices/appendix}
\end{spacing}
\end{document}