-
Notifications
You must be signed in to change notification settings - Fork 1
/
ankitThesis.tex
137 lines (103 loc) · 3.61 KB
/
ankitThesis.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
% A LaTeX (non-official) template for ISAE projects reports
% Copyright (C) 2014 Damien Roque
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 2
% of the License, or (at your option) any later version.
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License
% along with this program; if not, write to the Free Software
% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
% Version: 0.2.1
% Author: Damien Roque <damien.roque_AT_isae.fr>
% Updated by : Ankit Chiplunkar [email protected]
\documentclass[a4paper,12pt]{book}
% include user packages
\include{0-configuration/packages}
% Include user macros
\include{0-configuration/macros}
% \includeonly{1-opening/acronyms}
% \includeonly{2-chapters/2-01-introduction} %part 1
% \includeonly{2-chapters/2-02-gpTheory}
% \includeonly{2-chapters/2-03-scalingUpGPs}
% \includeonly{2-chapters/2-04-basicCovariances}
% \includeonly{2-chapters/2-05-combiningBasicKernels} %part 2
% \includeonly{2-chapters/2-06-multiTaskLearning}%,
% \includeonly{2-chapters/2-07-addingEquations}
% \includeonly{2-chapters/2-08-conclusions}
% \includeonly{3-appendix/3-01-mathematicalIdentities}
% \includeonly{3-appendix/3-02-PODI}
% \includeonly{3-appendix/3-03-nonLinearOperator}
\begin{document}
%%%%%%%%%%%%%%%%%%
%%% First page %%%
%%%%%%%%%%%%%%%%%%
%\makeflyleaf
% compiled the myflyleaf
\includepdf[pages={1}]{1-opening/firstPage_ankitThesis.pdf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Acknowledgements %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
\include{1-opening/acknowledgements}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Quotation %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{1-opening/quotation}
%%%%%%%%%%%%%%%%
%%% Abstract %%%
%%%%%%%%%%%%%%%%
% Include the abstract
\cleardoublepage
\input{1-opening/abstract}
%%%%%%%%%%%%%%%%
%%% Page numbering and other stuff %%%
%%%%%%%%%%%%%%%%
\clearpage
\tableofcontents
\clearpage
\listoffigures
\clearpage
\lstlistoflistings
\clearpage
\include{1-opening/acronyms}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Content of the report and references %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
\pagestyle{fancy}
\cleardoublepage
\part{Introduction}\label{partIntroduction}
\include{2-chapters/2-01-introduction}
\include{2-chapters/2-02-gpTheory}
\include{2-chapters/2-03-scalingUpGPs}
\part{Incorporating structure in Gaussian Process Regression}\label{partIncorporatePattern}
\include{2-chapters/2-04-basicCovariances}
\include{2-chapters/2-05-combiningBasicKernels}
\part{Incorporating multiple outputs in Gaussian Process Regression}\label{partIncorporateMultipleOutputs}
\include{2-chapters/2-06-multiTaskLearning}
\include{2-chapters/2-07-addingEquations}
\part{Conclusions}\label{partConclusions}
\include{2-chapters/2-08-conclusions}
%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Appendices are included here %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%
\appendix
\part*{Appendix}
\include{3-appendix/3-01-mathematicalIdentities}
%\include{3-appendix/3-02-modalHCTBuilding}
\include{3-appendix/3-03-PODI}
\include{3-appendix/3-04-nonLinearOperator}
\bibliographystyle{authoryear-fr}
\bibliography{references}
\clearpage
%%%%%%%%%%%%%%%%
%%% Abstract %%%
%%%%%%%%%%%%%%%%
% Include the abstract
\cleardoublepage
\input{4-closing/endingAbstract}
\end{document}