Add section about creating presentations

This commit is contained in:
Julius Freudenberger 2025-02-24 21:07:56 +02:00
parent 426b137172
commit 7c085cbc24
4 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,11 @@
\documentclass[aspectratio=169]{beamer}
\usetheme{<themename>}
\begin{frame}{Titel der Folie}
Hier kann jeder mögliche LaTeX-Code stehen
\end{frame}
\begin{frame}{Weitere Folie}
\begin{itemize}
\item Aufzählung
\end{itemize}
\end{frame}

View file

@ -0,0 +1,8 @@
\begin{frame}
\begin{itemize}
\item<1-> Auf allen Folien
\item<2> nur auf Folie 2
\item<-3> nur bis Folie 3
\only<4>{\includegraphics{picture}}
\end{itemize}
\end{frame}

View file

@ -0,0 +1,3 @@
\begin{frame}[fragile]{Dieser Frame ist fragil}
Wegen der \verb|verbatim| Umgebung
\end{frame}