%\documentclass[]{beamer}
\documentclass[aspectratio=169]{beamer}
\usepackage[english]{babel}
%\usepackage[czech]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{booktabs}
\usetheme[
workplace=c4e,
]{MU}
\begin{document}
\title[Short Presentation Title]{Full Presentation Title}
\subtitle[Short Presentation Subtitle]{Full Presentation Subtitle}
\author[J.\,Doe]{Jane Doe \\ personal-id@mail.muni.cz}
\institute[ICS MU]{Institute of Computer Science, Masaryk University}
\date{\today}
\subject{Presentation Subject}
\keywords{the, presentation, keywords}
\begin{frame}[plain]
\maketitle
\end{frame}
\section[Short Section 1 Name]{Full Section 1 Name}
\subsection[Short Subsection 1 Name]{Full Subsection 1 Name}
\begin{frame}{Frame Title}{Frame Subtitle}
plain text, \structure{page structure}, \alert{emphasis}
\begin{itemize}
\item a single-line bullet list item
\item a bullet list item that is quite long (in order to force a line break),
which also contains \alert{emphasized text}
\begin{itemize}
\item a second-level list item
\begin{itemize}
\item a third-level list item
\end{itemize}
\item \alert{an emphasized second-level list item}
\end{itemize}
\end{itemize}
\begin{enumerate}
\item a numbered list item
\begin{enumerate}
\item a second-level list item containing a math expression
\[ E = mc^2 \]
\end{enumerate}
\end{enumerate}
\end{frame}
\subsection[Short Subsection 2 Name]{Full Subsection 2 Name}
\begin{frame}{Text Blocks}
text above a block\footnote{a footnote with an \url{https://address.edu}}
\begin{block}{Block}
text in a block
\end{block}
\begin{exampleblock}{Example Block}
text in a block
\end{exampleblock}
\begin{alertblock}{Emphasized Block}
text in a block
\end{alertblock}
\end{frame}
\begin{frame}{Figures}
\begin{figure}
\includegraphics[width=.5\textwidth,height=.5\textheight,keepaspectratio]{cow-black.mps}
\caption{A Holstein Friesian cow}
\end{figure}
\end{frame}
\subsection[Short Subsection 3 Name]{Full Subsection 3 Name}
\begin{frame}{Tables}
\begin{table}
\begin{tabular}{llc}
First Name & Surname & Year of Birth \\ \midrule
Albert & Einstein & 1879 \\
Marie & Curie & 1867 \\
Thomas & Edison & 1847 \\
\end{tabular}
\caption{The great minds of the 19th century}
\end{table}
\end{frame}
\begin{frame}[plain]
\vfill
\centerline{Thank You for Your Attention!}
\vfill\vfill
\end{frame}
\end{document}