-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
124 lines (86 loc) · 3.43 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
% ******************************* PhD Thesis Template
%**************************
% Please have a look at the README.md file for info on how to use the template
\documentclass[a4paper,21pt,times,numbered,online,index,customargin]{Classes/PhDThesisPSnPDF} %online -> print for printed copies
\usepackage{longtable}
\usepackage{adjustbox}
\usepackage{fixltx2e}
\usepackage{pifont}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tablefootnote}
\usepackage[scaled=0.85]{beramono} %bold texttt in Appendix
\usepackage[refpage]{nomencl}
\usepackage[raggedright]{titlesec}
\usepackage{float}
\newcommand{\cmark}{\ding{51}}% ticks
\newcommand{\xmark}{\ding{55}}% crosses
% Nomenclature with page nums of first use
\def\pagedeclaration#1{\dotfill\hyperlink{page.#1}{\nobreakspace#1}}
\makenomenclature
% ********************************** Preamble **********************************
% Preamble: Contains packages and user-defined commands and settings
\input{Preamble/preamble}
% ************************ Thesis Information & Meta-data **********************
% Thesis title and author information, reference file for biblatex
\input{thesis-info}
% ***************************** Abstract Separate ******************************
\ifdefineAbstract
\pagestyle{empty}
\includeonly{Declaration/declaration}
\includeonly{Abstract/abstract}
\fi
% ***************************** Chapter Mode ***********************************
\ifdefineChapter
\setcounter{chapter}{3}
\includeonly{Chapter6/chapter6}
\fi
% ******************************** Front Matter ********************************
\begin{document}
\frontmatter
\begin{titlepage}
\maketitle
\end{titlepage}
\include{Acknowledgement/acknowledgement}
\include{Abstract/abstract}
% *********************** Adding TOC and List of Figures ***********************
\tableofcontents
\listoffigures
\listoftables
\printnomenclature
% ******************************** Main Matter *********************************
\mainmatter
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
\include{Chapter4/chapter4}
\include{Chapter5/chapter5}
\include{Chapter6/chapter6}
\include{Chapter7/chapter7}
\include{Chapter8/chapter8}
% ********************************** Back Matter *******************************
% Backmatter should be commented out, if you are using appendices after References
\backmatter
% ********************************** Appendices ********************************
%\begin{appendices} % Using appendices environment for more functunality
\include{Appendix/appendix}
%\end{appendices}
% ********************************** Bibliography ******************************
\begin{spacing}{0.9}
% To use the conventional natbib style referencing
% Bibliography style previews: http://nodonn.tipido.net/bibstyle.php
\bibliographystyle{ieeetr}
\cleardoublepage
\bibliography{References/references} % Path to your References.bib file
% 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.
%\printbibliography[heading=bibintoc, title={References}]
\end{spacing}
% *************************************** Index ********************************
%\printthesisindex % If index is present
\end{document}