-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
executable file
·168 lines (131 loc) · 4.68 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
159
160
161
162
163
164
165
166
167
168
% **************************************************
% Document Class Definition
% **************************************************
\documentclass[
paper=A4,
twoside=true, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
parskip=full, % spacing value / method for paragraphs
chapterprefix=true, % prefix for chapter marks
11pt, % font size
headings=normal, % size of headings
bibliography=totoc, % include bib in toc
listof=totoc, % include listof entries in toc
titlepage=on, % own page for each title page
captions=tableabove, % display table captions above the float env
draft=false, % value for draft version
]{scrreprt}
% **************************************************
% Information and Commands for Reuse
% **************************************************
\newcommand{\thesisTitle}{Form and Content in Neural Networks}
\newcommand{\thesisName}{Alejandro Avilés}
\newcommand{\thesisSubject}{Unconventional Applications of Deep Learning}
\newcommand{\thesisLicense}{\href{https://creativecommons.org/licenses/by-sa/4.0/}{Creative Commons BY-SA 4.0 Licensed}}
\newcommand{\thesisDate}{September 13, 2016}
\newcommand{\thesisVersion}{1.1}
\newcommand{\thesisFirstSupervisor}{Fernando Berzal}
\newcommand{\thesisUniversity}{\protect{University of Granada}}
\newcommand{\thesisUniversityDepartment}{Department of Computer Science and Artificial Intelligence}
\newcommand{\thesisUniversityInstitute}{International School for Postgraduate Studies}
\newcommand{\thesisUniversityGroup}{Master in Soft Computing and Intelligent Systems}
\newcommand{\thesisUniversityCity}{Granada}
\newcommand{\thesisUniversityCountry}{Spain}
\newcommand{\thesisUniversityStreetAddress}{Periodista Daniel Saucedo Aranda Street}
\newcommand{\thesisUniversityPostalCode}{18071}
% **************************************************
% Load and Configure Packages
% **************************************************
% -- Base packages -------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[
figuresep=colon,
sansserif=false,
hangfigurecaption=false,
hangsection=true,
hangsubsection=true,
colorize=full,
colortheme=bluemagenta,
bibsys=biber,
bibfile=thesis,
bibstyle=numeric,
]{cleanthesis}
% -- Extra packages ------------------------------------------------------------
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage{mathtools}
\usepackage{subcaption}
\usepackage{todonotes}
% -- Extra config --------------------------------------------------------------
\hypersetup{
pdftitle={\thesisTitle},
pdfsubject={\thesisSubject},
pdfauthor={\thesisName},
plainpages=false,
colorlinks=false,
pdfborder={0 0 0},
breaklinks=true,
bookmarksnumbered=true,
bookmarksopen=true,
hypertexnames=true
}
% Reduce distance between items in enumerations
\setlist{noitemsep}
% Break long URLs in bibliography
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{8000}
% **************************************************
% Document CONTENT
% **************************************************
\begin{document}
% Rename document parts
\renewcaptionname{english}{\figurename}{Fig.}
\renewcaptionname{english}{\tablename}{Tab.}
% -- Front matter --------------------------------------------------------------
% Roman page numbers and no headers/footers
\pagenumbering{roman}
\pagestyle{empty}
\input{content/titlepages}
\cleardoublepage
% Just page numbers
\pagestyle{plain}
\input{content/abstract}
\cleardoublepage
\input{content/acknowledgments}
\cleardoublepage
\setcounter{tocdepth}{2}
\tableofcontents
\cleardoublepage
% -- Body matter ---------------------------------------------------------------
% Arabic page numbers and fancy header/footer
\pagenumbering{arabic}
\setcounter{page}{1}
\pagestyle{maincontentstyle}
\input{content/chapter-introduction}
\input{content/chapter-theory}
\input{content/chapter-context}
\input{content/chapter-system}
\input{content/chapter-applications}
\input{content/chapter-conclusion}
\cleardoublepage
% -- Back matter ---------------------------------------------------------------
{
\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\printbibliography[nottype=image]
\printbibliography[heading=subbibliography,title={Images},type=image,prefixnumbers={!}]
}
\cleardoublepage
\input{content/colophon}
\cleardoublepage
\input{content/declaration}
\clearpage
\newpage
\mbox{}
% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}