dissertation-4-dissertation/thesis.tex

191 lines
6.9 KiB
TeX
Raw Normal View History

2013-12-09 22:04:17 +00:00
% ******************************* PhD Thesis Template **************************
2013-11-24 23:26:21 +00:00
% Please have a look at the README.md file for info on how to use the template
\documentclass[a4paper,12pt,times,numbered,print,index]{PhDThesisPSnPDF}
2013-11-24 23:26:21 +00:00
% ******************************************************************************
% ******************************* Class Options ********************************
% *********************** See README for more details **************************
% ******************************************************************************
% `a4paper'(The University of Cambridge PhD thesis guidelines recommends a page
% size a4 - default option) or `a5paper': A5 Paper size is also allowed as per
% the Cambridge University Engineering Deparment guidelines for PhD thesis
2013-11-24 23:26:21 +00:00
%
% `11pt' or `12pt'(default): Font Size 10pt is NOT recommended by the University
% guidelines
2013-11-24 23:26:21 +00:00
%
% `oneside' or `twoside'(default): Printing double side (twoside) or single
% side.
2013-11-24 23:26:21 +00:00
%
% `print': Use `print' for print version with appropriate margins and page
% layout. Leaving the options field blank will activate Online version.
2013-11-24 23:26:21 +00:00
%
% `index': For index at the end of the thesis
2013-11-24 23:26:21 +00:00
%
% `draftclassic': For draft mode without loading any images (same as draft in book)
2013-11-24 23:26:21 +00:00
%
% `draft': Special draft mode with line numbers, images, and water mark with
2014-06-05 23:24:38 +01:00
% timestamp and custom text. Position of the text can also be modified.
%
% `abstract': To generate only the title page and abstract page with
% dissertation title and name, to submit to the Student Registry
2013-12-05 16:01:45 +00:00
%
% `chapter`: This option enables only the specified chapter and it's references
% Useful for review and corrections.
%
2013-11-26 00:56:29 +00:00
% ************************* Custom Page Margins ********************************
%
% `custommargin`: Use `custommargin' in options to activate custom page margins,
% which can be defined in the preamble.tex. Custom margin will override
% print/online margin setup.
2013-11-26 00:56:29 +00:00
%
% *********************** Choosing the Fonts in Class Options ******************
2013-11-24 23:26:21 +00:00
%
% `times' : Times font with math support. (The Cambridge University guidelines
% recommend using times)
2013-11-24 23:26:21 +00:00
%
2014-06-05 23:24:38 +01:00
% `fourier': Utopia Font with Fourier Math font (Font has to be installed)
% It's a free font.
2013-11-24 23:26:21 +00:00
%
% `customfont': Use `customfont' option in the document class and load the
% package in the preamble.tex
2013-11-24 23:26:21 +00:00
%
% default or leave empty: `Latin Modern' font will be loaded.
2013-11-24 23:26:21 +00:00
%
% ********************** Choosing the Bibliography style ***********************
2013-11-24 23:26:21 +00:00
%
% `authoryear': For author-year citation eg., Krishna (2013)
2013-11-24 23:26:21 +00:00
%
% `numbered': (Default Option) For numbered and sorted citation e.g., [1,5,2]
2013-11-24 23:26:21 +00:00
%
% `custombib': Define your own bibliography style in the `preamble.tex' file.
2014-06-05 23:24:38 +01:00
% `\RequirePackage[square, sort, numbers, authoryear]{natbib}'.
% This can be also used to load biblatex instead of natbib
% (See Preamble)
2013-11-24 23:26:21 +00:00
%
% **************************** Choosing the Page Style *************************
2013-11-24 23:26:21 +00:00
%
% `default (leave empty)': For Page Numbers in Header (Left Even, Right Odd) and
% Chapter Name in Header (Right Even) and Section Name (Left Odd). Blank Footer.
2013-11-24 23:26:21 +00:00
%
% `PageStyleI': Chapter Name next & Page Number on Even Side (Left Even).
% Section Name & Page Number in Header on Odd Side (Right Odd). Footer is empty.
2013-11-24 23:26:21 +00:00
%
% `PageStyleII': Chapter Name on Even Side (Left Even) in Header. Section Number
% and Section Name in Header on Odd Side (Right Odd). Page numbering in footer
2013-11-24 23:26:21 +00:00
% Uncomment to change page style
%\pagestyle{PageStyleII}
2013-11-15 13:11:41 +00:00
% ********************************** Preamble **********************************
% Preamble: Contains packages and user-defined commands and settings
2013-11-17 01:01:46 +00:00
\input{Preamble/preamble}
% ************************ Thesis Information & Meta-data **********************
% Thesis title and author information, refernce file for biblatex
\input{thesis-info}
2013-12-05 12:45:11 +00:00
2014-06-05 23:24:38 +01:00
% ***************************** Abstract Separate ******************************
% To printout only the titlepage and the abstract with the PhD title and the
% author name for submission to the Student Registry, use the `abstract' option in
2014-06-05 23:24:38 +01:00
% the document class.
2013-12-05 12:45:11 +00:00
2013-12-20 09:31:02 +00:00
\ifdefineAbstract
\pagestyle{empty}
2014-06-05 23:24:38 +01:00
\includeonly{Declaration/declaration, Abstract/abstract}
2013-12-20 09:31:02 +00:00
\fi
2013-12-05 12:45:11 +00:00
% ***************************** Chapter Mode ***********************************
% The chapter mode allows user to only print particular chapters with references
% Title, Contents, Frontmatter are disabled by default
% Useful option to review a particular chapter or to send it to supervisior.
% To use choose `chapter' option in the document class
\ifdefineChapter
2020-11-12 20:33:04 +00:00
\includeonly{Implementation/implementation}
\fi
2013-12-05 12:45:11 +00:00
% ******************************** Front Matter ********************************
2013-11-15 14:15:34 +00:00
\begin{document}
2013-11-24 17:15:26 +00:00
\frontmatter
2013-11-14 18:51:42 +00:00
2016-07-04 09:45:09 +01:00
\maketitle
2013-11-14 18:51:42 +00:00
2020-11-06 18:38:12 +00:00
%\include{Dedication/dedication}
2013-12-20 09:31:02 +00:00
\include{Declaration/declaration}
2021-05-08 13:26:00 +01:00
\include{0_Proforma/proforma}
2020-11-06 18:38:12 +00:00
%\include{Acknowledgement/acknowledgement}
%\include{Abstract/abstract}
2013-11-14 18:51:42 +00:00
% *********************** Adding TOC and List of Figures ***********************
2013-11-14 18:51:42 +00:00
\tableofcontents
\listoffigures
2020-11-28 20:20:21 +00:00
% \listoftables
2013-11-14 18:51:42 +00:00
2014-12-02 23:28:04 +00:00
% \printnomenclature[space] space can be set as 2em between symbol and description
%\printnomenclature[3em]
2014-12-02 23:28:04 +00:00
\printnomenclature
2013-11-20 00:55:21 +00:00
% ******************************** Main Matter *********************************
2013-11-24 17:15:26 +00:00
\mainmatter
2013-11-14 18:51:42 +00:00
2021-03-31 13:16:40 +01:00
\include{1_Introduction/introduction}
\include{2_Preparation/preparation}
\include{3_Implementation/implementation}
\include{4_Evaluation/evaluation}
\include{5_Conclusions/conclusions}
2013-11-14 18:51:42 +00:00
2013-12-07 20:40:49 +00:00
% ********************************** Back Matter *******************************
% Backmatter should be commented out, if you are using appendices after References
2014-06-05 23:24:38 +01:00
%\backmatter
2013-12-07 20:40:49 +00:00
2014-01-20 12:09:46 +00:00
% ********************************** Bibliography ******************************
2013-11-14 18:51:42 +00:00
\begin{spacing}{0.9}
% To use the conventional natbib style referencing
% Bibliography style previews: http://nodonn.tipido.net/bibstyle.php
2014-06-09 16:22:51 +01:00
% Reference styles: http://sites.stat.psu.edu/~surajit/present/bib.htm
2020-12-31 21:02:32 +00:00
%\bibliographystyle{apalike}
2015-06-19 22:08:36 +01:00
%\bibliographystyle{unsrt} % Use for unsorted references
2020-12-31 21:02:32 +00:00
\bibliographystyle{plainnat} % use this to have URLs listed in References
\cleardoublepage
2014-08-07 19:05:36 +01:00
\bibliography{References/references} % Path to your References.bib file
2014-06-05 23:24:38 +01:00
% If you would like to use BibLaTeX for your references, pass `custombib' as
% an option in the document class. The location of 'reference.bib' should be
% specified in the preamble.tex file in the custombib section.
% Comment out the lines related to natbib above and uncomment the following line.
2014-08-07 19:05:36 +01:00
%\printbibliography[heading=bibintoc, title={References}]
2013-11-14 18:51:42 +00:00
\end{spacing}
2014-01-11 17:51:19 +00:00
% ********************************** Appendices ********************************
2020-11-28 20:20:21 +00:00
%TC:ignore
2014-01-11 17:51:19 +00:00
\begin{appendices} % Using appendices environment for more functunality
2021-01-29 14:45:21 +00:00
\include{LanguageSamples/languagesamples}
\include{OutboundGraphs/outboundgraphs}
2020-12-31 20:32:32 +00:00
\include{Proposal/proposal}
2014-01-11 17:51:19 +00:00
\end{appendices}
% *************************************** Index ********************************
\printthesisindex % If index is present
2013-11-14 18:51:42 +00:00
2020-11-06 18:38:12 +00:00
% ************************************** Proposal ******************************
2020-11-28 20:20:21 +00:00
%TC:endignore
2013-11-14 18:51:42 +00:00
\end{document}