dissertation-4-dissertation/thesis.tex

188 lines
6.2 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]{Classes/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
%
% `draft': For draft mode without loading any images (same as draft in book)
2013-11-24 23:26:21 +00:00
%
% `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
%
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
%
% `fourier': Utopia Font with Fourier Math 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.
% `\RequirePackage[square, sort, numbers, authoryear]{natbib}'
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
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 **********************
%% The title of the thesis
2013-11-26 00:56:29 +00:00
\title{Writing your PhD Thesis in \texorpdfstring{\\ \LaTeX2e}{LaTeX2e}}
%\texorpdfstring is used for PDF metadata. Usage:
%\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg.,
%\texorpdfstring{$sigma$}{sigma}
2013-11-24 15:40:35 +00:00
%% The full name of the author
2013-11-14 18:51:42 +00:00
\author{Krishna Kumar}
%% Department (eg. Department of Engineering, Maths, Physics)
2013-11-14 23:17:26 +00:00
\dept{Department of Engineering}
%% University and Crest
2013-11-14 18:51:42 +00:00
\university{University of Cambridge}
2013-11-25 22:41:50 +00:00
\crest{\includegraphics[width=0.25\textwidth]{University_Crest}}
%% You can redefine the submission text:
% Default as per the University guidelines: This dissertation is submitted for
% the degree of Doctor of Philosophy
%\renewcommand{\submissiontext}{change the default text here if needed}
%% Full title of the Degree
2013-11-14 18:51:42 +00:00
\degree{Doctor of Philosophy}
%% College affiliation (optional)
2013-11-14 23:17:26 +00:00
\college{King's College}
%% Submission date
2013-11-24 23:26:21 +00:00
\degreedate{2013}
%% Meta information
\subject{LaTeX} \keywords{{LaTeX} {PhD Thesis} {Engineering} {University of
Cambridge}}
2013-11-15 13:11:41 +00:00
2013-11-14 18:51:42 +00:00
2013-12-05 12:45:11 +00: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
% the document class.
2013-12-05 12:45:11 +00:00
\ifdefineAbstract \includeonly{Abstract/abstract} \else \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
2013-11-14 18:51:42 +00:00
\begin{titlepage}
\maketitle
\end{titlepage}
\include{Dedication/dedication} \include{Declaration/declaration}
\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
\listoftables
% \printnomenclature[space] space can be set as 2.5cm between symbol and
% description
2013-11-20 00:55:21 +00:00
\printnomencl
% ******************************** Main Matter *********************************
2013-11-24 17:15:26 +00:00
\mainmatter
2013-11-14 18:51:42 +00:00
2013-12-09 22:04:17 +00:00
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
2013-11-14 18:51:42 +00:00
\include{Chapter3/chapter3}
2013-12-09 22:04:17 +00:00
%\include{Chapter4/chapter4}
%\include{Chapter5/chapter5}
%\include{Chapter6/chapter6}
%\include{Chapter7/chapter7}
2013-12-07 20:40:49 +00:00
% ********************************** Appendices ********************************
\begin{appendices} % Using appendices environment for more functunality
\include{Appendix1/appendix1}
2013-11-14 18:51:42 +00:00
\include{Appendix2/appendix2}
2013-12-07 20:40:49 +00:00
\end{appendices}
% ********************************** Back Matter *******************************
% ********************************** Bibliography ******************************
2013-12-07 20:40:49 +00:00
\backmatter
2013-11-14 18:51:42 +00:00
\begin{spacing}{0.9}
2013-12-08 01:14:22 +00:00
% Bibliography style previews: http://nodonn.tipido.net/bibstyle.php
\bibliographystyle{apalike}
%\bibliographystyle{plainnat} % use this to have URLs listed in References
2013-12-08 01:14:22 +00:00
\cleardoublepage
2013-12-05 16:01:45 +00:00
\bibliography{References/references} % Path to your References.bib file
2013-11-14 18:51:42 +00:00
\end{spacing}
% *************************************** Index ********************************
\printthesisindex % If index is present
2013-11-14 18:51:42 +00:00
\end{document}