-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentacion.tex
55 lines (47 loc) · 1.27 KB
/
presentacion.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
\documentclass{beamer}
\usepackage{graphics}
\usepackage{url}
\usepackage{ulem}
\usepackage{beamerthemesplit}
\usepackage{hyperref}
\usepackage{wrapfig}
\usepackage[spanish,activeacute]{babel}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{color}
\usetheme{Warsaw}
\usepackage{pstricks}
%\pgfdeclareimage[height=1.3cm]{logo-izq}{img/alma.png}
%\pgfdeclareimage[height=1.3cm]{logo-der}{img/alma-off.png}
%\logo{\pgfuseimage{logo-der}}
%\setbeamertemplate{sidebar left}
%{
%\logo{\pgfuseimage{logo-izq}}
%\vfill %pone la imágen en la esquina inferior izquierda
%\rlap{\hskip0.1cm\insertlogo} %inserta la imágen
%\vskip15pt
%}
\title{Rotative Workforce Scheduling Problem}
\subtitle{Presentación Final}
\author{Jonathan Antognini C.\\
Luis Casanova S.
}
\institute[]{Universidad Técnica Federico Santa María}
\date{\today}
\begin{document}
\frame{\titlepage}
\frame{\tableofcontents}
\section{Introducción}
\input{src/introduccion}
\section{Implementaciones}
\subsection{Estructura de datos}
\input{src/edd}
\subsection{Foward checking + Graph BackJumping}
\input{src/fc+gbj}
\subsection{Greedy + Hill Climbing}
\input{src/g+hc}
\section{Resultados}
\input{src/resultados}
\section{Conclusiones}
\input{src/conclusiones}
\end{document}