LaTeX-Templates/latex-beamer-theme/presentation.tex

94 lines
2.9 KiB
TeX

%% Example presentation for Uni Bremen Beamer Theme 2.0.0 (2021-07)
%% LaTeX-version by Erik Michelson (michelson@uni-bremen.de)
\documentclass[aspectratio=169]{beamer}
% Set encodings
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% Set the theme
\usetheme{uhb}
% Set metadata
\title{Example presentation title}
\subtitle{This is the subtitle}
\author{Jane Doe, John Doe}
\date[2025-05-01]{Bremen, 01.05.2025}
\faculty{Faculty 01}{Physics / Electrical Engineering}
\workgroup{Example Working Group}
\footertext{The footer text can be customized}{More footer text}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Example page}
This is some sample text. The quick brown fox jumps over the lazy dog.
\\
\vspace{0.5cm}
Some bullet points: \\
\begin{itemize}
\item Normal text
\item \textit{Italic text}
\item \texttt{Monospaced text}
\pause
\item This item is shown on a separate page
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{.}
Use a single dot as frametitle to hide the title.
\end{frame}
\begin{frame}
Leave out the \texttt{\textbackslash{}frametitle\{\}} to remove the header.
\end{frame}
\begin{frame}
\frametitle{Images}
\vspace{-0.25cm}
\begin{figure}[h]
\includegraphics[height=0.4\paperheight]{assets/logo}
\caption{\textcopyright\, Uni Bremen}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Textblocks}
\begin{block}{Some text block}
The normal text block is displayed in the Uni Bremen blue color scheme.
\end{block}
\begin{alertblock}{Alert block}
The alert block is displayed in the Uni Bremen red color scheme.
\end{alertblock}
\begin{exampleblock}{Example block}
The example block is displayed in a greyscale version of the color scheme.
\end{exampleblock}
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{Framebreaks}
The first page contains an enumerated list.
\begin{enumerate}
\item First item
\item Second item
\item Third item
\end{enumerate}
\framebreak
This second page contains some sample text.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{frame}
\end{document}