% 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,iti]{tugraz2018}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
%% Add your own packages, macros, etc.
% ...
%% Enter presentation metadata
\title[Presentation Short Title]{Presentation Long Title}
\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}
  \tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}{The frame title}
  A text frame
\end{frame}
\section{Content}
\begin{frame}{Lists}
  \begin{itemize}
    \item First item
    \item Second item
    \item Third item
  \end{itemize}
\end{frame}
\begin{frame}{Numbered Lists and Pauses}
  \begin{enumerate}
    \item First item
      \begin{enumerate}
        \item First subitem
          \begin{enumerate}
            \item First 
            \item Second
          \end{enumerate}
      \end{enumerate}
      \pause
    \item Second item
      \pause
    \item Third item
  \end{enumerate}
\end{frame}
\begin{frame}{An Image}
  \centering
  \includegraphics[height=0.6\textheight]{figures/photoexample-169}
\end{frame}
\section*{}
\begin{frame}{Conclusion}
  ...
\end{frame}
%\begin{frame}[c,plain]
\begin{frame}[c]
  \centering
  \Large Questions?
\end{frame}
\end{document}