Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass{beamer}
2
\usetheme{Frankfurt}
3
\usecolortheme{default}
4
\usepackage{hyperref}
5
\usepackage[utf8]{inputenc} % this is needed for german umlauts
6
\usepackage[english]{babel} % this is needed for german umlauts
7
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
8
9
\begin{document}
10
11
\title{The title of your presentation}
12
\subtitle{A subtitle}
13
\author{Martin Thoma}
14
\date{25. March 2013}
15
\subject{Computer Science}
16
17
\frame{\titlepage}
18
19
\section{Introduction}
20
\subsection{A subsection!}
21
\begin{frame}{Slide title}
22
Slide content
23
\end{frame}
24
25
\end{document}
26
27