Initial commit

This commit is contained in:
Alex D. 2021-07-10 14:26:52 +00:00
commit 010718b1e8
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
6 changed files with 71 additions and 0 deletions

3
base.tex Normal file
View File

@ -0,0 +1,3 @@
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[useregional]{datetime2}

18
content/bibliography.tex Normal file
View File

@ -0,0 +1,18 @@
\section{Quellen}
\begin{thebibliography}{9}
\begin{frame}{Textquellen}
\bibitem{}
,
\textit{},
\DTMdate{},
\href{}{}
\end{frame}
\begin{frame}{Bildquellen}
\bibitem{}
,
\textit{},
\DTMdate{},
\href{}{}
\end{frame}
\end{thebibliography}
\end{document}

31
content/content.tex Normal file
View File

@ -0,0 +1,31 @@
\title{}
\author{}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Inhalt}
\begin{columns}
\tableofcontents
\end{columns}
\end{frame}
\begin{frame}{Beispielseite}
\begin{columns}
\begin{column}{0.5\linewidth}
\begin{itemize}
\item<1-> test
\item<1-> test
\only<2->{\item test2}
\only<2->{\item test2}
\end{itemize}
\begin{block}{Example}
Lorem ipsum
\end{block}
\end{column}
\begin{column}{0.5\linewidth}
\begin{figure}\includegraphics[height=0.35\textheight]{example-image-a}\caption{Beispielbild}\end{figure}
\end{column}
\end{columns}
\end{frame}

8
handout.tex Normal file
View File

@ -0,0 +1,8 @@
\documentclass[aspectratio=169,handout]{beamer}
\usepackage{pgfpages}
\pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=5mm] % Use when printing handouts
\input{base.tex}
\input{theme.tex}
\input{content/content.tex}
\input{content/bibliography.tex}

6
presentation.tex Normal file
View File

@ -0,0 +1,6 @@
\documentclass[aspectratio=169]{beamer}
\input{base.tex}
\input{theme.tex}
\input{content/content.tex}
\input{content/bibliography.tex}

5
theme.tex Normal file
View File

@ -0,0 +1,5 @@
\setbeamertemplate{caption}[numbered]
\setbeamercovered{transparent}
\usetheme{Montpellier}
\usecolortheme{seagull}
\usefonttheme{professionalfonts}