-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
73 lines (62 loc) · 1.76 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
\documentclass[xcolor=table, aspectratio=169, usepdftitle=false]{beamer}
\makeatletter
\appto\input@path{{pkgs/awesome-beamer}, {pkgs/smile}}
\makeatother
\usepackage[english, secslide, subsecslide, coloraccent=red]{beamerthemeawesome}
\addbibresource{references.bib}
\usepackage{scrextend}
\usepackage{emoji}
\usepackage{listings}
\usepackage[verbatim=true]{lstfiracode}
\usepackage[hidenotes]{pdfpc}
\usepackage{tikzlings-owls}
\title{In-Memory Processing}
\author{Lukas Pietzschmann}
\subtitle{Am Beispiel von Apache Spark}
\email{[email protected]}
\institute{Institut für Verteilte Systeme}
\uni{Universität Ulm}
\location{Ulm}
\date{12. Januar 2023}
\background{pics/sparks.png}
\lstdefinestyle{animateblocks}{
basicstyle=\ttfamily\color{black!20},
moredelim=**[is][\only<+>{\color{black}}]{@}{@},
}
\lstset{
style=FiraCodeStyle,
basicstyle=\ttfamily,
commentstyle=\color{gray}\itshape,
keywordstyle=\bfseries,
escapeinside={<!}{!>},
}
\lstdefinelanguage{Python}{
morekeywords={access, and, break, class, continue, def, del, elif, else,%
except, exec, finally, for, from, global, if, import, in, is, lambda,%
not, or, pass, print, raise, return, try, while},
morekeywords=[2]{range},
sensitive=true,
morestring=[b]',
morestring=[b]",
morecomment=[s]{'''}{'''},
morecomment=[l]{//},
morecomment=[s]{"""}{"""},
morestring=[s]{r'}{'},
morestring=[s]{r"}{"},
morestring=[s]{r'''}{'''},
morestring=[s]{r"""}{"""},
morestring=[s]{u'}{'},
morestring=[s]{u"}{"},
morestring=[s]{u'''}{'''},
morestring=[s]{u"""}{"""}
}
\begin{document}
\maketitle
% \input{slides/agenda.tex}
\input{slides/intro.tex}
\input{slides/ziele.tex}
\input{slides/in-memory.tex}
\input{slides/spark.tex}
\input{slides/take-away.tex}
\input{slides/references.tex}
\end{document}