-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTesis.tex
52 lines (40 loc) · 1.54 KB
/
Tesis.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
\documentclass[a4paper,openany,12pt]{book}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{fancyhdr}
\usepackage{ae}
\usepackage[left=2.5cm,right=2.5cm,top=3cm,bottom=3cm]{geometry}
\usepackage[printonlyused]{acronym}
\usepackage{hlundef}
\usepackage{tesis}
\title{Deep Q-Learning multiagente aplicado a la creación de un equipo de fútbol de agentes simulados 2D}
\author{José Enrique Carrillo Pino}
\orientador{Prof Dr. Dennis Barrios Aranibar}
\dedicado{Dedico este trabajo a mis padres, por todo el esfuerzo que han hecho en sacarme adelante y a mis profesores por todas sus enseñanzas.}
\begin{document}
\maketitle %Compone la carátula y la dedicatoria
\include{Abreviaturas}
\input{Agradecimientos} %Inserta los agradecimientos
\input{Resumen} %Inserta el resumen
\input{Abstract} %Inserta el abstract
\tableofcontents %Inserta el índice general
\listoftables %Inserta el índice de cuadros
\listoffigures %Inserta el índice de figuras
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% En esta parte deberas incluir los archivos de tu tesis %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{Introduccion}
%\input{Problema}
\input{Marco_Teorico}
\input{Estado_Arte}
\input{Propuesta}
\input{Resultados}
\input{Conclusiones}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibliographystyle{apalike}
\bibliography{Bibliog}
\addcontentsline{toc}{chapter}{Bibliografía}
\end{document}