LTU Beamer Template
Author
Malte Kerl
Last Updated
8 days ago
License
Creative Commons CC BY 4.0
Abstract
This beamer template can be used for presentations at LTU.
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{biblatex}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\addbibresource{references.bib} % Specify the bibliography file
\title{LTU Beamer Template}
\date{2024-05-06}
\author{Malte Kerl}
\usetheme[language=english]{LTU}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Options}
This is text outside of an enumeration
\begin{itemize}
\item language (Changes logo and footline)
\begin{itemize}
\item english (default)
\item swedish
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}{Liwicki-Mode}{Highlighting one point at a time}
\liwicki[1]{With \textbackslash liwicki[number]\{content\} different parts of the slide are highlighted subsequently}\\
\liwicki[2]{The slide is also displayed times the highest Liwicki number}\\
\liwicki[4]{Don't leave Liwicki Numbers out}
\end{frame}
\begin{frame}{frame with citations and figures}
\begin{columns}
\begin{column}{0.5\textwidth}
According to \citeauthor{smith2020}, significant advancements have been made in this field \cite{smith2020}.
For a comprehensive overview, refer to the book by \cite{doe2019}.
\end{column}
\begin{column}{0.5\textwidth}
\begin{figure}
\centering
\includegraphics[width=0.8\linewidth]{media/template/english/LTU_eng_vit}
\caption{LTU Logo (demo graphic)}
\label{fig:ltuengvit}
\end{figure}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}
\end{document}