-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththesis.tex
158 lines (131 loc) · 3.64 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
%%%%%%%%%%%%%%%%
%% PhD thesis %%
%%%%%%%%%%%%%%%%
\input{preamble/myinformation} % change name, title and others here
% Loading packages/settings:
\input{preamble/preamble} % change page layout, latex package setting in here
% defining some commands:
\input{preamble/mycommands} % define some custom commands in here
% add symbols/nomenclature entries
\input{preamble/nomenclature}
%%%%%%%%%%%%%%%% Additional settings %%%%%%%%%%%%%%%%
\numberwithin{figure}{chapter}
\numberwithin{table}{chapter}
\numberwithin{equation}{chapter}
% \renewcommand{\figurename}{Fig.} % Fig. instead of Figure
% \renewcommand{\tablename}{Tab.} % Tab. instead of Table
%\setcounter{secnumdepth}{4}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\pdfinclusioncopyfonts=1
\begin{document}
%%%%%%%%%%%%%%%%%%%
% Titlepage %
%%%%%%%%%%%%%%%%%%%
\input{titlepage/titlepage}
\myclearpage
%%%%%%%%%%%%%%%%%%%
% Abstract %
%%%%%%%%%%%%%%%%%%%
\onehalfspacing
%\doublespacing
%\singlespacing
\myclearpage\mypagestyle{fancy}
\input{abstract/abstract}
%%%%%%%%%%%%%%%%%%%
% Declarations %
%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{fancy}
\input{declaration/copyright}
\myclearpage\mypagestyle{fancy}
\input{declaration/declaration}
\myclearpage
%%%%%%%%%%%%%%%%%%%%%%%%%%
% Quote/Acknowledgements %
%%%%%%%%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{empty}
\input{abstract/quote}
\myclearpage\mypagestyle{myfancy}
\input{abstract/acknowledgements}
\myclearpage
%%%%%%%%%%%%%%%%%%%
% TOC/LOF/LOT %
%%%%%%%%%%%%%%%%%%%
% rename toc:
\renewcommand{\contentsname}{Table of Contents}
\mypagestyle{lists}\mylisthead{Table of Contents}
\tableofcontents
\myclearpage\mypagestyle{lists}\mylisthead{\listfigurename}
\listoffigures
\myclearpage\mypagestyle{lists}\mylisthead{\listtablename}
\listoftables
%\myclearpage\mypagestyle{lists}\mylisthead{\listalgorithmname}
%\listofalgorithms
%%%%%%%%%%%%%%%%%%%
% Nomenclature %
%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{lists}\mylisthead{\nomname}
\printnomenclature[2cm]
%%%%%%%%%%%%%%%%%%%
% Introduction %
%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\chapter{Introduction}
% your introduction:
\input{content/introduction/introduction}
%%%%%%%%%%%%%%%%%%%
% Result chapters %
%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\chapter{First result chapter}
\label{chap:reschap1}
\input{content/reschap1/main}
\myclearpage\mypagestyle{myfancy}
\chapter{Second result chapter}
\label{chap:reschap2}
\input{content/reschap2/main}
\myclearpage\mypagestyle{myfancy}
\chapter{Third result chapter}
\label{chap:reschap3}
\input{content/reschap3/main}
%%%%%%%%%%%%%%%%%%%%%
% Summary %
%%%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\chapter{Summary}
\label{chap:summary}
\input{content/conclusion/summary}
%%%%%%%%%%%%%%%%%%%%%
% Conclusion %
%%%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\chapter{Conclusion}
\label{chap:conclusion}
\input{content/conclusion/conclusion}
%%%%%%%%%%%%%%%%%%%%%
% Future Research %
%%%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\chapter{Future Work}
\label{chap:future_work}
\input{content/conclusion/future_work}
%%%%%%%%%%%%%%%%%%%%%
% References %
%%%%%%%%%%%%%%%%%%%%%
\myclearpage
%\nocite{*}
\mypagestyle{myreferences}
% the file references/references.bib is automagically generated and contains the content
% of all .bib files within the directory 'references'. Thus, only include the file
% 'references/references' here:
\input{references/references}
%%%%%%%%%%%%%%%%%%%%%
% Appendix %
%%%%%%%%%%%%%%%%%%%%%
\myclearpage\mypagestyle{myfancy}
\appendix
\chapter{Appendix}
\input{content/appendix/appendix}
%
% Good luck!
%
\end{document}