-
Notifications
You must be signed in to change notification settings - Fork 6
/
thesis.tex
executable file
·94 lines (69 loc) · 2.04 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
\documentclass[final,10pt]{phdimt}
% list here the bibfiles you want to use
% note that you have to add the extension since the template uses
% biblatex and biber to compile the references
\addbibresource{references.bib}
\addbibresource{mainmatter/2/methods_and_methods.bib}
% LaTex metadata (used in the frontmatter)
\title{<Thesis Title>}
\author{<Author Name>}
\mail{<Author Email Address>}
% Specify PhD progam, track name, and/or curriculum, as needed. Comment track or curriculum if not needed.
\program{<QUALCOSA>}
%\track{}
%\curriculum{}
\coordinator{<coordinator>}
\coordinatorinst{\IMT{}}
\cycle{<Cycle Number>}
\pubyear{<Defense Year>}
%% Uncomment the following section if you want to set PDF Metadata
% \pdfinfo{
% /Title ()
% /Creator (VSCode)
% /Producer (pdfTeX)
% /Author ()
% /Subject (<subjects>)
% /Keywords (<mobility>)
% }
% \pdfcatalog{
% /PageMode (/UseOutlines)
% /OpenAction (fitbh)
% }
\advisor{Prof.\ <Advisor>}
\advisorinst{<Advisor Institution>}
\coadvisor{Prof.\ <Co-Advisor>}
\coadvisorinst{<Co-Advisor Institution>}
\secondcoadvisor{Prof.\ <2nd Co-Advisor>}
\secondcoadvisorinst{<2nd Co-Advisor Institution>}
% Set revieweres here. Comment unneeded reviewer entries.
\firstreviewer{<Reviewer 1>}
\firstreviewerinst{<Reviewer 1 institution>}
\secondreviewer{<Reviewer 2>}
\secondreviewerinst{<Reviewer 2 institution>}
%\thirdreviewer{}
%\thirdreviewerinst{}
\begin{document}
% Let's do not cheat on line spacing
\renewcommand\baselinestretch{1}
\baselineskip=14pt
\frontmatter
\pagestyle{empty} % following pages do not require page numbering
\maketitle{}
\makereviewerspage{}
\include{frontmatter/dedication}
\pagestyle{plain} % numbering is shown from now on
\tableofcontents
\listoffigures
\listoftables
\include{frontmatter/acknowledgement}
\include{frontmatter/vita}
\include{frontmatter/abstract}
\mainmatter{}
\include{mainmatter/1/introduction}
\include{mainmatter/2/methods_and_methods}
\include{mainmatter/5/conclusion}
\appendix
\include{appendix/A/appA}
\printbibliography{}
\makecopyright{}
\end{document}