-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
95 lines (72 loc) · 2.02 KB
/
presentation.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
\documentclass[compress, 16pt, aspectratio=1610, utf8, noamsthm, xcolor=dvipsnames,xcolor=tables,xcolor=hyperref,hyperref=unicode]{beamer} % TODO handout
% Add the handout parameters ito the subscript braces to generate nicely formatted 2 in 1 handouts
%% Definitions:
\def\github{https://github.com/becknik/}
\def\mail{\href{mailto:[email protected]}{E-Mail~}}
\def\semester{WS 22/23}
\def\tutNR{X} % TODO
% Importing packages:
\input{src/packages.tex}
\usepackage{./src/beamertheme}
%\setbeameroption{show notes on second screen} % This is different from handout generation
%% Setting up title page:
\title[Übungsgr. 14 - Tutorium \tutNR]{Tutorium \tutNR}
\subtitle[PSE]{Programmierung und Softwareentwicklung}
\author{Jannik Becker}
\institute[Uni Stuttgart]{Universität Stuttgart}
\date[\semester]{\vskip0.5cm\footnotesize \today}
\begin{document}
\frame{\titlepage}
\mode<beamer>{
\begin{frame}{Gliederung}
\tableofcontents
\end{frame}
\AtBeginSection{
\begin{frame}{Gliederung}
\tableofcontents[currentsection]
\end{frame}
}
\AtBeginSubsection{
\begin{frame}{Gliederung}
\tableofcontents[currentsubsection]
\end{frame}
}
}
\input{src/sample.tex}
\input{contents.tex} % Using this might be more tidy & decrease redundancy
%\section[]{}
%\subsection[]{}
\mode<beamer>{
\section*{Abschluss}
\makethanks
}
\end{document}
%% Useful beamer things:
% \begin{itemize}
% \item<1-> Text visible on slide 1
% \item<2> Text visible on slide 2 and not on 3
% \item<3-> Text visible on slide 3
% \end{itemize}
%% QR-Code generation:
% \begin{center}
% \textcolor{black}{\hypersetup{urlcolor=.}\qrcode[height=1.5cm,level=Q]{\github}}\\
% \end{center}
%% Block:
% \begin{block}<+->{}
% text
% \end{block}
%% Alter block:
% \begin{alertblock}<+->{}
% text
% \end{alertblock}
%% Example block:
% \begin{examples}<+->{}
% text
% \end{examples}
%% Columns:
% \begin{columns}
% \column{0.5\textwidth}
% text
% \column{0.5\textwidth}
% text
% \end{columns}