📚 The CoCalc Library - books, templates and other resources
License: OTHER
\documentclass{beamer}1\usetheme{Frankfurt}2\usecolortheme{default}3\usepackage{hyperref}4\usepackage[utf8]{inputenc} % this is needed for german umlauts5\usepackage[english]{babel} % this is needed for german umlauts6\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf78\begin{document}910\title{The title of your presentation}11\subtitle{A subtitle}12\author{Martin Thoma}13\date{25. March 2013}14\subject{Computer Science}1516\frame{\titlepage}1718% Show table of contents19\frame{20\frametitle{Contents}21\setcounter{tocdepth}{1}22\tableofcontents23\setcounter{tocdepth}{2}24}2526%\AtBeginSection[]{27% \InsertToC[sections={\thesection}] % shows only subsubsections of one subsection28%}2930\section{Introduction}31\subsection{A subsection!}32\begin{frame}{Slide title}33Slide content34\end{frame}3536\begin{frame}{Another title}37Some text\\38\uncover<2->{Uncover me on slide 2 (-)\\}39\visible<3->{visible from slide 3 on (-)\\}40\only<4->{only from slide 4 (-)\\}41\onslide<5->{on slide 5 and further (-)\\}42\uncover<6>{Uncover me on slide 6 \\}43\visible<7>{visible on 7\\}44\only<8>{only on slide 8 \\}45\alt<8>{I am on slide 8\\}{I am not on slide 8\\}46\onslide<9>{on slide 9\\}47\end{frame}4849\begin{frame}{Third title}50\begin{block}{Title}51This is a block.52\end{block}5354\begin{exampleblock}{my Title}55This is an example block.56\end{exampleblock}5758\begin{alertblock}{another Title}59This is an alert block.60\end{alertblock}61\end{frame}6263\end{document}646566