2013-03-05 11:32:17 +01:00
|
|
|
\documentclass{beamer}
|
2020-05-14 08:34:14 +02:00
|
|
|
\usetheme{metropolis} % https://github.com/matze/mtheme
|
2013-03-05 11:32:17 +01:00
|
|
|
\usecolortheme{default}
|
|
|
|
\usepackage{hyperref}
|
|
|
|
\usepackage[utf8]{inputenc} % this is needed for german umlauts
|
|
|
|
\usepackage[english]{babel} % this is needed for german umlauts
|
|
|
|
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\title{The title of your presentation}
|
|
|
|
\subtitle{A subtitle}
|
|
|
|
\author{Martin Thoma}
|
|
|
|
\date{25. March 2013}
|
|
|
|
\subject{Computer Science}
|
|
|
|
|
|
|
|
\frame{\titlepage}
|
|
|
|
|
|
|
|
\section{Introduction}
|
|
|
|
\subsection{A subsection!}
|
|
|
|
\begin{frame}{Slide title}
|
|
|
|
Slide content
|
|
|
|
\end{frame}
|
|
|
|
|
|
|
|
\end{document}
|