-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
118 lines (107 loc) · 3.41 KB
/
main.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
\documentclass[aspectratio=169,svgnames,compress]{beamer}
% \documentclass[aspectratio=169,svgnames,compress,handout]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[spanish,es-tabla]{babel}
\usepackage{graphicx} % Required for inserting images
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{arrows}
\usepackage{fontawesome}
\usepackage{hyperref}
\usepackage[
sorting=none,
style=authoryear,
abbreviate=true,
eprint=false,
url=false,
% citepages=omit,
% citecounter=false,
% giveninits=true,
]{biblatex}
\usepackage{csquotes}
\usepackage[type={CC}, modifier={by}, version={4.0}]{doclicense}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{fistrum}
% Cosas bibliografia
\addbibresource{references.bib}
\setbeamertemplate{bibliography item}{\faFileTextO}
\renewcommand*{\bibfont}{\footnotesize}
\DeclareCiteCommand{\footcite}%[\mkbibfootnote]
{% \boolfalse{citetracker}%
% \boolfalse{pagetracker}%
\usebibmacro{prenote}%
}
{%
% \ifciteindex
% {\indexfield{indextitle}}
% {}%
\printnames[][-1]{author}
\setunit{\adddot\space}
% \printfield[citetitle]{labeltitle}
\printfield{title}
\setunit{\adddot\space}
\printfield{year}
\setunit{\adddot\space}
}
{% sepcode
\multicitedelim%
}
{ %postnote
\usebibmacro{postnote}
}
\title{Exploración de Sistemas Recomendadores para la Recomendación de Propuestas en Organizaciones Autónomas Descentralizadas}
\subtitle{Máster Universitario en Inteligencia Artificial}
\author[David Davó Laviña]{David Davó Laviña\inst{2}\\[2mm]{\footnotesize Tutores: Damiano Zanardini\inst{1} \and Javier Arroyo\inst{2}}}
\institute[UPM]{%
\inst{1} Departamento de Inteligencia Artificial, Universidad Politécnica de Madrid \and \inst{2} Departamento de Ingeniería del Software e Inteligencia Artificial, Universidad Complutense de Madrid
}
\date{Junio 2024}
\logo{\includegraphics[height=1cm]{images/logos/escudo-leyenda-upm-color-watermark.pdf}}
\titlegraphic{
\includegraphics[height=1.7cm]{images/logos/escudo-etsii-color.pdf}
\hspace{.2cm}
\includegraphics[height=1.7cm]{images/logos/escudo-upm-color.pdf}
% \hspace{.3cm}
% \tikz\node[circle, minimum width=1.9cm,
% path picture = {
% \node at (path picture bounding box.center) {
% \includegraphics[width=2cm]{Images/logos/ascii.jpg}
% };
% }
% ] {};
}
% BEAMER THEME
% \usetheme[height=1.2cm]{Rochester}
% TODO: Pass the footline option to the miniframes package
% \PassOptionsToPackage{footline=authorinstitute}{beamerouterthememiniframes}
\usetheme{Berlin}
% \usetheme{Dresden}
\usecolortheme{default}
\setbeamertemplate{navigation symbols}[only frame symbol]{}
% Only for debugging
\addtobeamertemplate{navigation symbols}{}{%
\usebeamerfont{footline}%
\usebeamercolor[fg]{footline}%
\hspace{1em}%
\insertframenumber/\inserttotalframenumber
}
% Reset the footnote number per each slide
\AtBeginEnvironment{frame}{\setcounter{footnote}{0}}
\setbeamerfont{footnote}{size=\scriptsize}
\newcommand\blfootnote[1]{
\begingroup
\renewcommand\thefootnote{}\footnote{#1}
\addtocounter{footnote}{-1}
\endgroup
}
\begin{document}
\input{sections/0start}
\input{sections/1intro}
\input{sections/2experimento}
\input{sections/3modelos}
\input{sections/7resultados}
\input{sections/8conclusiones}
\input{sections/99end}
\end{document}