-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparallel.tex
93 lines (76 loc) · 2.06 KB
/
parallel.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
\documentclass{beamer}
% Font selection
\usepackage{palatino}
% Beamer template
\usetheme{Antibes}
%\usetheme{Berlin}
\usepackage[scale=1.2]{ccicons}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tabularx}
\usepackage{multicol}
\usepackage{graphicx}
\usepackage[final]{pdfpages}
\input{cpplst}
\input{tikz-config}
\input{common}
% Footline in every slide
\setbeamertemplate{footline}{
\leavevmode%
\hbox{\begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm]{author in head/foot}%
\usebeamerfont{author in head/foot}\ccbyncndeu
\quad -- \quad J. Daniel Garcia
-- ARCOS@UC3M (\textbf{\url{[email protected]}})
-- Twitter: \textbf{\url{@jdgarciauc3m}}
\hfill
\insertframenumber/\inserttotalframenumber
\end{beamercolorbox}}%
\vskip0pt%
}
% Logo in every slide
\addtobeamertemplate{headline}{}
{%
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east] at (current page.north east) {\includegraphics[height=0.7cm]{logos/arcos_t.png}};
\end{tikzpicture}
}
\tikzset{
invisible/.style={opacity=0},
visible on/.style={alt=#1{}{invisible}},
alt/.code args={<#1>#2#3}{%
\alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} % \pgfkeysalso doesn't change the path
},
}
%Portada
\title{C++ prgramming in a parallel world}
\subtitle{CPP Europe\\Bucharest 2020}
\author{J. Daniel Garcia}
\institute{ARCOS Group\\University Carlos III of Madrid\\Spain}
\date{February 25th, 2020}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\AtBeginSection[]
{
\begin{frame}<*>
\setbeamertemplate{section in toc shaded}[default][50]
\setbeamertemplate{subsection in toc shaded}[default][50]
\tableofcontents[currentsection,hideallsubsections]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}<beamer>
\setbeamertemplate{subsection in toc shaded}[default][50]
\tableofcontents[sectionstyle=show/hide,subsectionstyle=show/shaded/hide]
\end{frame}
}
\input{license-cc.tex}
\input{jdgarcia}
\input{arcos}
\input{content}
\begin{frame}
\titlepage
\end{frame}
\end{document}