Brunel University - PhD Thesis Template
Författare
Alina Miron
Last Updated
för 5 månader sedan
Licens
Creative Commons CC BY 4.0
Sammanfattning
A proposal for a doctoral thesis dissertation template
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Thesis Title - change here to your report title}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{Author Name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\usepackage{tikz}
\usetikzlibrary{fit, positioning}
\usepackage{lipsum}
\usepackage{hyperref}
\bibliographystyle{ieeetr}
\usepackage{biblatex}
\addbibresource{references.bib}
\begin{document}
%TC:ignore
\input{title}
\input{Declaration}
\input{Publications}
\input{abstract}
\input{chapters/Acknowledgements}
\tableofcontents
\listoffigures
\listoftables
%TC:endignore
\input{abbreviations}
\chapter{Introduction}
\input{chapters/chapter01-introduction}
\chapter{Literature Review}
\input{chapters/chapter02}
\chapter{Contributions 1}
\input{chapters/chapter03}
\chapter{Contributions 2}
\input{chapters/chapter04}
\chapter{Contributions 3}
\input{chapters/chapter05}
\chapter{Discussion}
\input{chapters/chapter06}
\chapter{Conclusion}
\input{chapters/conclusion}
%TC:ignore
\appendix
\chapter{Title of the appendix}
\input{chapters/appendixA}
\printbibliography
%TC:endignore
\end{document}