This repository has been archived by the owner on Oct 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
150 lines (111 loc) · 3.37 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
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
\documentclass[aspectratio=169]{beamer}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{todonotes}
\usepackage{subfig}
\usepackage{tikz}
\usepackage[round]{natbib}
\usepackage{booktabs,multirow}
\usepackage{adjustbox}
\usepackage{comment}
\usepackage[normalem]{ulem}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{caption}
\captionsetup[figure]{labelformat=empty}
\usepackage{algpseudocode}
\usepackage[linesnumbered,ruled]{algorithm2e}
\SetArgSty{textnormal}
\DontPrintSemicolon
\usetikzlibrary{arrows,shapes,mindmap,backgrounds}
% Declare layers
\pgfdeclarelayer{background}
\pgfsetlayers{background,main}
% Easier TO-DO notes
\newcommand{\Todo}[1]{\todo[inline]{\scriptsize #1}}
% 1: Slide number
% 2: Highlight color
% 3: Text to be formatted
\newcommand{\onlyh}[3]{
\only<#1> {\color{#2}}
#3
\only<#1> {\normalcolor}
}
\usetheme{Inf}
\title[EURO 2021H -- Solving daily-HHCRSP with route interdependencies]
{Solving the single-day home health care problem with route interdependencies}
% Optional subtitle
\subtitle{EURO 2021H --- MD-35}
\date{July 12, 2021}
% Author information
\author{\footnotesize Alberto F. Kummer, Olinto C.B. de Araújo, Luciana S. Buriol, and Mauricio G.C. Resende}
\institute{Institute of Informatics --- UFRGS\\\texttt{\{afkneto,buriol\}@inf.ufrgs.br}}
% Commands to help writing the presentation.
\newcommand{\C}{\mathcal{C}}
\newcommand{\Cz}{\C^0}
\newcommand{\Cs}{\C^\mathrm{s}}
\newcommand{\Cd}{\C^\mathrm{d}}
\newcommand{\Sk}{\mathcal{S}}
\newcommand{\dmin}{\delta^\mathrm{min}}
\newcommand{\dmax}{\delta^\mathrm{max}}
\newcommand{\V}{\mathcal{V}}
\begin{document}
% Command to create title page
\InfTitlePage
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
%
%\section{Blocos}
%\begin{frame}[plain]
% \sectionpage
%\end{frame}
\input{sections/00-introduction.tex}
\input{sections/01-related-works.tex}
\input{sections/02-problem-definition.tex}
\input{sections/03-proposed-methods.tex}
\input{sections/04-experimental-results.tex}
\input{sections/05-conclusion.tex}
\section{References}
\begin{frame}[plain]
\sectionpage
\end{frame}
\frame[allowframebreaks]{
\frametitle{Bibliography}
\scriptsize
\setbeamertemplate{bibliography item}[triangle]
\bibliographystyle{plainnat}
\bibliography{bibliography}
}
\section*{}
%\begin{frame}
%% \frametitle{Thank you!}
% \vspace*{40pt}
% \InfContacts
%\end{frame}
\begin{frame}
\frametitle{Thank you!}
\begin{center}
\footnotesize
\textbf{Alberto F. Kummer$^1$, Olinto C.B. de Araújo$^2$,\\Luciana S. Buriol$^{1,4}$, and Mauricio, G.C. Resende$^{3,4}$}
\vspace*{8pt}
$^1$Federal University of Rio Grande do Sul\\
\texttt{\{\textcolor{InfRed}{afkneto},buriol\}@inf.ufrgs.br}
\vspace*{6pt}
$^2$Federal University of Santa Maria\\
\texttt{olinto@ctism.ufsm.br}
\vspace*{6pt}
$^3$University of Washington\\
\texttt{mgcr@berkeley.edu}
\vspace*{6pt}
$^4$Amazon.com, Inc.
\end{center}
\begin{tikzpicture}[overlay]
\node at (1,3.55) { \includegraphics[scale=0.06]{fig/afkn.jpeg} };
\node at (3,3) { \includegraphics[scale=0.03]{fig/lsb.jpg} };
\node at (3,0.5) { \includegraphics[scale=0.13]{fig/ocba.jpg} };
\node at (1,1) { \includegraphics[scale=0.16]{fig/mgcr.jpg} };
\end{tikzpicture}
\end{frame}
\end{document}