%
% QUT PhD Thesis template for LaTeX
% Adopted from TU/e Style Master Thesis template for LaTeX 1.0 by Thijs Nugteren and Joos Buijs
%
%
% THIS IS THE MAIN FILE (i.e. compile this file, compiling the others directly won't work)
%
\documentclass[a4paper,10pt,twoside]{report}
%all the other includes etc. are done in the thesis.sty file.
% \usepackage{thesis-chinese}
\usepackage{thesis}
\addbibresource{references.bib}
% Co-authorships and other forms included inline
% QUT requires the forms for submission and lodgement, but for aesthetic reasons you may
% want to switch them off in other copies
\newtoggle{inlineforms}
\togglefalse{inlineforms}
% eformat excludes blank pages after eg title page. For printing, you may wish to switch this off
\newtoggle{eformat}
\togglefalse{eformat}
\newcommand{\blankprintpage}{\iftoggle{eformat}{}{\clearemptydoublepage}}
% Command definitions, particularly for formal elements through the thesis
\usepackage{definitions}
%
% These commands need to be defined in order to produce a correct and personalized document
%
\newcommand{\shortdoctitle}{PhD Thesis}
\newcommand{\doctitle}{My Thesis Title}
\newcommand{\docsubtitle}{PhD Thesis}
\newcommand{\me}{My Name}
\newcommand{\mydegrees}{My Degrees}
\newcommand{\keywords}{keyword1, keyword2, keyword3}
\newcommand{\version}{EMPTY version}
%Be sure to use all the titles for your committee members!!! (their names show up on the very first page!)
\newcommand{\firstCommitteeMember}{Your First Supervisor}
\newcommand{\secondCommitteeMember}{Your Second Supervisor}
\newcommand{\thirdCommitteeMember}{Your Third Supervisor}
\author{\me}
%
% PDF settings
%
\hypersetup
{
pdfauthor={\me},
pdftitle={\shortdoctitle},
pdfsubject={\doctitle},
pdfkeywords={\keywords}
}
\begin{document}
%use this include for PDF and distribution versions
\pagenumbering{roman}
\include{titlepage}
\normalsize
\blankprintpage
%Sometimes line numbers are nice, uncomment the next line to enable:
%\linenumbers
\chapter*{Abstract}\label{chapter:abstract}
\input{chapters/abstract}
\blankprintpage
%An executive summary if you want:
%\chapter*{Executive summary}\label{chapter:executive_summary}
%\input{chapters/executive_summary}
%\blankprintpage
\tableofcontents
\blankprintpage
\listoffigures
\blankprintpage
\listoftables
\blankprintpage
\lstlistoflistings
% List of Symbols might be useful
\include{supplement/glossary}
\blankprintpage
\chapter{Introduction}\label{chapter:introduction}
\setcounter{page}{0}
\pagenumbering{arabic}
%from here on, start the 'real' page numbering, from 1, with normal digits
\input{chapters/introduction}
\blankprintpage
\chapter{Preliminaries}\label{chapter:preliminaries}
\input{chapters/preliminaries}
\blankprintpage
\chapter{First Real Chapter}\label{chapter:first_real_chapter}
\input{chapters/first_real_chapter}
\blankprintpage
\chapter{Second Real Chapter}\label{chapter:second_real_chapter}
\input{chapters/second_real_chapter}
\blankprintpage
\chapter{Conclusions}\label{chapter:conclusions}
\input{chapters/conclusions}
\blankprintpage
\appendix
\addcontentsline{toc}{chapter}{Appendix}
\input{appendices/main}
\blankprintpage
\printbibliography[heading=bibintoc]
\end{document}