forked from felixduvallet/ri-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
106 lines (92 loc) · 3.58 KB
/
Copy paththesis.tex
File metadata and controls
106 lines (92 loc) · 3.58 KB
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
% !TeX root = ./thesis.tex
\documentclass[12pt]{src/stem-thesis}
%% Import additional packages and header definitions
% For the LaTex newbies, \input let's you introduce a .tex file as if it were
% part of the current file
\input{src/packages}
%% Page layout: approx. 1" margins.
\usepackage[
reset,
letterpaper,
twoside,
vscale=.75, % Use 75% of the total vertical space (default=0.7)
hscale=.70, % Use 70% of the horizontal space (default=0.7)
nomarginpar, % No space for margin notes.
% Margin ratio: Use default (2:3) for binding and 1:1 for on-screen.
% hmarginratio=1:1, % disable this for binding (more space on binding side)
% showframe, % enable to see the margins
heightrounded, % Round size of document.
% inner=3.5cm, % Uniform margins
% outer=3.5cm, % Uniform margins
]{geometry}
%% Macros and colour definitions.
\input{src/macros.tex}
\input{src/colors.tex}
% *****************************************************************************
% Thesis configuration: Tweak this
% *****************************************************************************
%% Developer and debug options
% \overfullrule=5pt % Un-comment this to show a black bar by overfull hboxes.
%% Bibliography
% Be careful with reference files list, always avoid whitespaces!
\addbibresource{bibliography/references.bib}
%% Title parameters
\title{My great thesis}
\subtitle{So great it needs a second line} % Can be commented out
\author{Andreu Giménez Bolinches}
\supervisor{Andreu Giménez Bolinches} % Can be commented out
\date{\today}
\Year{\the\year{}}
\logopath{src/placeholders/logo.png} % Can be commented out
\organization{My university\\At my place} % Can be commented out
\disclaimer{No robot was harmed writting this report} % Can be commented out
% Copyright notice generated automatically from Year and author.
\permission{All rights reserved.} % Can be commented out
\committee{
Distinguished professor, \emph{chair} \\%
Distinguished professor \\%
Distinguished professor \\%
Distinguished professor, \emph{Distinguished University}%
} % Can be commented out
\keywords{Latex, Template, Science, Technology, Engineering, Mathematics}
\begin {document}
% ***************************************************************************
% Front Matter
% ***************************************************************************
\frontmatter
\pagestyle{empty}
%% Build title
\maketitle
%% Preface
% Includes acknowledgements, dedications, funding, tables of contents
% And tables of figures
\IfFileExists{./preface.tex}{
\input{preface.tex}
}
% ***************************************************************************
% Main Content
% ***************************************************************************
% Includes the introduction, body chapters and conclusions
\mainmatter
\pagestyle{thesis}
\hypersetup{linkcolor=documentLinkColor}
\input{content.tex}
% ***************************************************************************
% Appendices
% ***************************************************************************
\IfFileExists{./appendices.tex}{
\appendix
\input{appendices}
\clearpage
}
% ***************************************************************************
% Bibliography
% ***************************************************************************
\backmatter
\singlespace
\pagestyle{plain}
\printbibliography[
heading=bibintoc,
title={Bibliography}
]
\end{document}