1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
% !TEX TS-program = pdflatex
% !TEX encoding = UTF-8 Unicode
\documentclass[10pt]{beamer}
\usetheme[
% showheader,
% red,
% gray,
% graytitle,
% colorblocks,
% noframetitlerule,
]{Verona}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\title{A simple template}
\subtitle{With a subtitle}
\author[Ivan Valbusa]{Ivan Valbusa}
\mail{ivan dot valbusa at univr dot it}
\institute[University of Verona]{Department of Philology, Literature, and Linguistics\\
University of Verona}
\date{November 27, 2015}
\titlegraphic[width=5cm]{plato-aristotle}{}
\begin{document}
\maketitle
\section{The first section}
\subsection{See the documentation of the beamer class for details}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}[<+->]{Lorem ipsum}{Sed commodo posuere pede}
\begin{block}{Block title}
Cras viverra metus rhoncus sem.
\end{block}
\begin{itemize}
\item Lorem ipsum dolor sit amet
\item Consectetuer adipiscing elit
\item Ut purus elit, vestibulum ut
\end{itemize}
\begin{quotation}[Donald E. Knuth, \emph{The \TeX book}]
Gentle reader: This is a handbook about \TeX, a new typesetting system G intended for the creation of beautiful books—and especially for books that contain a lot of mathematics.
\end{quotation}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Lorem ipsum}{Sed commodo posuere pede}
\begin{alertblock}{Alert block title}
Nulla et lectus vestibulum urna
\end{alertblock}
\begin{enumerate}[<+->]
\item Curabitur dictum gravida
\item Nam arcu libero eget
\item Consectetuer id vulputate
\end{enumerate}
\begin{quotation}[Donald E. Knuth, \emph{The \TeX book}]
Gentle reader: This is a handbook about \TeX, a new typesetting system G intended for the creation of beautiful books—and especially for books that contain a lot of mathematics.
\end{quotation}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Lorem ipsum}{Sed commodo posuere pede}
\begin{exampleblock}{Example block title}
Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar at,
mollis ac
\end{exampleblock}
\begin{description}[<+->]
\item[one] \alert<2>{Duis eget orci sit amet}
\item[two] \alert<3>{Orci dignissim rutrum}
\item[three] \alert<4>{Sodales, sollicitudin vel, wisi}
\end{description}
\onslide<4>
\begin{quotation}[Donald E. Knuth, \emph{The \TeX book}]
Gentle reader: This is a handbook about \TeX, a new typesetting system G intended for the creation of beautiful books—and especially for books that contain a lot of mathematics.
\end{quotation}
\end{frame}
\end{document}
|