Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 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
% Show table of contents
20
\frame{
21
\frametitle{Contents}
22
\setcounter{tocdepth}{1}
23
\tableofcontents
24
\setcounter{tocdepth}{2}
25
}
26
27
%\AtBeginSection[]{
28
% \InsertToC[sections={\thesection}] % shows only subsubsections of one subsection
29
%}
30
31
\section{Introduction}
32
\subsection{A subsection!}
33
\begin{frame}{Slide title}
34
Slide content
35
\end{frame}
36
37
\begin{frame}{Another title}
38
Some text\\
39
\uncover<2->{Uncover me on slide 2 (-)\\}
40
\visible<3->{visible from slide 3 on (-)\\}
41
\only<4->{only from slide 4 (-)\\}
42
\onslide<5->{on slide 5 and further (-)\\}
43
\uncover<6>{Uncover me on slide 6 \\}
44
\visible<7>{visible on 7\\}
45
\only<8>{only on slide 8 \\}
46
\alt<8>{I am on slide 8\\}{I am not on slide 8\\}
47
\onslide<9>{on slide 9\\}
48
\end{frame}
49
50
\begin{frame}{Third title}
51
\begin{block}{Title}
52
This is a block.
53
\end{block}
54
55
\begin{exampleblock}{my Title}
56
This is an example block.
57
\end{exampleblock}
58
59
\begin{alertblock}{another Title}
60
This is an alert block.
61
\end{alertblock}
62
\end{frame}
63
64
\end{document}
65
66