150 lines
4.8 KiB
TeX
150 lines
4.8 KiB
TeX
% ******************************* PhD Thesis Template ************************
|
|
% Please have a look at the README.md file for info on how to use the template
|
|
|
|
\documentclass[a4paper,twoside,12pt,times,numbered,print,index]{Classes/PhDThesisPSnPDF}
|
|
|
|
% *****************************************************************************
|
|
% ******************************* Class Options *******************************
|
|
% *****************************************************************************
|
|
% `a4paper` or `a5paper` or `letter`: Paper size
|
|
%
|
|
% `10pt` or `11pt` or `12pt`: Font Size
|
|
%
|
|
% `oneside` or `twoside`: Printing double side (twoside) or single side.
|
|
%
|
|
% `print`: Use `print` for print version with appropriate margins and page layout. Leaving the options field blank will activate Online version.
|
|
%
|
|
% `index`: For index at the end of the thesis
|
|
%
|
|
% `draft`: For draft mode without loading any images (same as draft in book)
|
|
%
|
|
% ******************* Choosing the Fonts in Class Options *********************
|
|
%
|
|
% `times`: For Times font with math support.
|
|
%
|
|
% `fourier`: For Fourier font
|
|
%
|
|
% `customfont`: Use `customfont' option in the document class and load the package in the preamble.tex
|
|
%
|
|
% `default (leave empty)`: When no font is specified, `Latin Modern` is used as the default font with Math Support.
|
|
%
|
|
% ******************** Choosing the Bibliography style ***********************
|
|
%
|
|
% `authoryear`: For author-year citation eg., Krishna (2013)
|
|
%
|
|
% `numbered`: (Default Option) For numbered and sorted citation e.g., [1,5,2]
|
|
%
|
|
% `custombib`: Define your own bibliography style in the `preamble.tex` file.
|
|
% `\RequirePackage[square, sort, numbers, authoryear]{natbib}`
|
|
%
|
|
% ************************* Custom Page Margins ********************************
|
|
%
|
|
% `custommargin`: Define your custom margin and other sizes in the geometry package in the preamble.tex.
|
|
%
|
|
% ********************** Choosing the Page Style *********************************
|
|
%
|
|
% `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.
|
|
%
|
|
% `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.
|
|
%
|
|
% `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
|
|
|
|
|
|
% ********************************* Preamble **********************************
|
|
% Preamble: Contains packages and user-defined commands and settings
|
|
\input{Preamble/preamble}
|
|
|
|
% ******************** Thesis Information & Meta-data *************************
|
|
%% The title of the thesis
|
|
\title{ How to write your thesis in \texorpdfstring{\\ \LaTeX}{LaTeX}}
|
|
%\texorpdfstring is used for PDF metadata and \\ creates a new line
|
|
|
|
%% The full name of the author
|
|
\author{Krishna Kumar}
|
|
|
|
%% Department (eg. Department of Engineering, Maths, Physics)
|
|
\dept{Department of Engineering}
|
|
|
|
%% University and Crest
|
|
\university{University of Cambridge}
|
|
\crest{\includegraphics[width=0.25\textwidth]{University_Crest}}
|
|
|
|
%% You can redefine the submission text:
|
|
%\renewcommand{\submissiontext}{change the default text here if needed}
|
|
|
|
%% Full title of the Degree
|
|
\degree{Doctor of Philosophy}
|
|
|
|
%% College affiliation (optional)
|
|
\college{King's College}
|
|
|
|
%% Submission date
|
|
\degreedate{2013}
|
|
|
|
%% Meta information
|
|
\subject{LaTeX}
|
|
\keywords{{LaTeX} {PhD Thesis} {Engineering} {University of Cambridge}}
|
|
|
|
|
|
% ********************************Front Matter************************************
|
|
\begin{document}
|
|
|
|
|
|
\frontmatter
|
|
|
|
|
|
\begin{titlepage}
|
|
|
|
\maketitle
|
|
|
|
\end{titlepage}
|
|
|
|
\include{Dedication/dedication}
|
|
\include{Declaration/declaration}
|
|
\include{Acknowledgement/acknowledgement}
|
|
\include{Abstract/abstract}
|
|
|
|
% *********************** Adding TOC and List of Figures *************************
|
|
|
|
\tableofcontents
|
|
|
|
\listoffigures
|
|
|
|
\listoftables
|
|
|
|
\printnomencl
|
|
|
|
|
|
% ***********************************Main Matter***********************************
|
|
\mainmatter
|
|
|
|
\include{Chapter1/chapter1}
|
|
\include{Chapter2/chapter2}
|
|
\include{Chapter3/chapter3}
|
|
%\include{Chapter4/chapter4}
|
|
%\include{Chapter5/chapter5}
|
|
%\include{Chapter6/chapter6}
|
|
%\include{Chapter7/chapter7}
|
|
|
|
% ***********************************Back Matter***********************************
|
|
\backmatter
|
|
\appendix
|
|
\include{Appendix1/appendix1}
|
|
\include{Appendix2/appendix2}
|
|
|
|
% ***********************************Bibliography**********************************
|
|
|
|
\begin{spacing}{0.9}
|
|
%\bibliographystyle{apalike}
|
|
\bibliographystyle{plainnat}
|
|
\renewcommand{\bibname}{References}% changes default name Bibliography-> References
|
|
\cleardoublepage
|
|
\bibliography{References/References} % Path to your References.bib file
|
|
\end{spacing}
|
|
|
|
|
|
% *************************************** Index ***********************************
|
|
\printthesisindex
|
|
|
|
\end{document}
|