% Adapted from the ITI template by Yavuz Koroglu, June-2023
% Adapted from TU Graz Template for ITI by Michael Krisper, Sept-2020
% Original Author: Maria Eichlseder
% Design based on the PowerPoint template by Christina Fraueneder
% Re-using some elements of the 2013 LaTeX template by Thomas Quaritsch
% both available at
% https://tu4u.tugraz.at/bedienstete/organisation-und-administration/vorlagen-und-corporate-design/downloads-und-anwendungen-logoformate-und-vorlagen/designlinien-und-vorlagen-download/charakteristika-designlinie-ic/vorlagen-download-designlinie-ic/
% See also https://latex.tugraz.at/vorlagen/tugraz and https://github.com/quam426/tugPoster
\documentclass{beamer} % 4:3 (default)
%\documentclass[aspectratio=169]{beamer} % 16:9
\usetheme[institute,ist]{tugraz2018}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{multicol}
%% Add your own packages, macros, etc.
% ...
%% Enter presentation metadata
\title[Presentation Short Title]{Presentation Long Title\\2nd Line\\3rd Line}
\author{Your Name}
\date{Event/Date}
%% Logos
% \additionallogo{figures/logo} % additional institute/department logo (footline; optional)
% \logobar{Supported by: ...} % sponsors (titlepage; optional)
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}{Outline}
\begin{multicols}{2}
\tableofcontents
\end{multicols}
\end{frame}
\section{Introduction}
\begin{frame}{}
A text frame
\end{frame}
\section{Content}
\subsection{Lists}
\begin{frame}{}
\begin{tugitemize}
\item First item
\item Second item
\item Third item
\end{tugitemize}
\end{frame}
\subsection{Numbered Lists}
\begin{frame}{}
\begin{tugenumerate}
\item First item
\begin{tugenumerate}
\item First subitem
\begin{tugenumerate}
\item First
\item Second
\end{tugenumerate}
\end{tugenumerate}
\pause
\item Second item
\pause
\item Third item
\end{tugenumerate}
\end{frame}
\subsection{An Image}
\begin{frame}{}
\centering
\includegraphics[height=0.6\textheight]{figures/photoexample-169}
\end{frame}
\subsection{A Block}
\begin{frame}{}
\begin{block}{A Block}
\end{block}
\begin{block}{Another Block}
\end{block}
\begin{tugcolumns}
\begin{column}{.48\linewidth}
\begin{block}{Side-by-side}
\end{block}
\end{column}
\begin{column}{.48\linewidth}
\begin{block}{Blocks!}
\end{block}
\end{column}
\end{tugcolumns}
\end{frame}
\section*{}
\begin{frame}{Conclusion}
...
\end{frame}
%\begin{frame}[c,plain]
\begin{frame}[c]
\centering
\Large Questions?
\end{frame}
\end{document}