-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.tex
More file actions
130 lines (106 loc) · 2.57 KB
/
slides.tex
File metadata and controls
130 lines (106 loc) · 2.57 KB
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
\documentclass[10pt,aspectratio = 169,]{beamer}
\input{theme/packages}
\input{theme/commands}
\usepackage[no-math]{fontspec}
\setmainfont[
Path = ./theme/,
Extension = .otf,
Ligatures = TeX,
UprightFont = *-Regular,
ItalicFont = *-RegularItalic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldItalic
]{Lelo}
\usepackage{theme/eco_bielefeld}
\usepackage{emoji}
\providecommand{\tightlist}{\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\title{Title}
\makeatletter
\providecommand{\subtitle}[1]{% add subtitle to \maketitle
\apptocmd{\@title}{\par {\large #1 \par}}{}{}
}
\makeatother
\subtitle{Subtitle}
\author{ \texorpdfstring{\underline{Presenter}}{\underline{Presenter}} \and \texorpdfstring{Contributor}{Contributor} }
\date{2026-04-28}
\institute{Institute}
\AtBeginSection[]{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\usepackage{fontawesome}
\begin{document}
\begin{frame}[plain]{}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\section{Section 1}\label{section-1}
\begin{frame}[fragile]{LaTeX Engine}
\phantomsection\label{latex-engine}
\begin{itemize}
\tightlist
\item
This template uses the \href{https://camelot-typefaces.com/lelo}{Lelo
font}.
\item
The font is set via \texttt{\textbackslash{}usepackage\{fontspec\}},
which requires XeLaTeX or LuaLaTeX.
\item
\item
When compiling this template, make sure that either XeLaTeX or
LuaLaTeX is the selected LaTeX engine.
\end{itemize}
\end{frame}
\begin{frame}{Subsection 1.2}
\phantomsection\label{subsection-1.2}
\begin{itemize}
\tightlist
\item
Eat eggs
\item
Drink coffee
\end{itemize}
\end{frame}
\section{Section 2}\label{section-2}
\begin{frame}{Subsection 2.1}
\phantomsection\label{subsection-2.1}
\begin{itemize}
\tightlist
\item
Eat spaghetti
\item
Drink wine
\end{itemize}
\end{frame}
\begin{frame}
\begin{figure}
\includegraphics[height=0.7\textheight]{figures/cars-1} \caption{A scatterplot.}\label{fig:cars}
\end{figure}
\end{frame}
\begin{frame}{Subsection 2.2}
\phantomsection\label{subsection-2.2}
\begin{itemize}
\tightlist
\item
Get in bed
\item
Count sheep
\end{itemize}
\end{frame}
\begin{frame}{}
\vspace{0.5cm}
\begin{center}
{\Large Thanks for your attention!}
\end{center}
\vfill
\begin{itemize}
\item[\faEnvelope] \href{mailto:someone@example.com}{someone@example.com} \\
\item[\faLaptop] \href{https://example.org/}{https://example.org/}
\end{itemize}
\end{frame}
\end{document}