summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.tex
blob: cfc3e71b586ed693a1aa73d54c88736272849a66 (plain)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
% Copyright (C) 2015 by Ivan Valbusa 
% <ivan dot valbusa at univr dot it>
% -------------------------------------------------------
% 
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.

\documentclass{beamer}

\usetheme{Verona}

\title{Verona -- a theme for Beamer}
\subtitle{Version 0.1}
\author[Ivan Valbusa]{Ivan Valbusa\\\scriptsize\texttt{ivan dot valbusa at univr dot it}}
\institute[University of Verona]{Department of Philology, Literature, and Linguistics\\
University of Verona}
\date{\today}

\begin{document}

\begin{frame}[plain]
\titlepage
\end{frame}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}[b,plain]

\begin{alertblock}{Warning}
This is package is a beta version.\\
Some or all the elements could change in the next versions.
\end{alertblock}

\vfill

\small
\noindent Copyright \copyright\ 2015 Ivan Valbusa.
 \bigskip

\noindent This package is author-maintained. 
Permission is granted to copy, distribute and/or modify this software under the 
terms of the LaTeX Project Public License, version 1.3c ora later (\url{http://latex-project.org/lppl}). This software is provided ''as is'', without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose.

 \bigskip
 
\noindent If you have any questions, feedback or requests please email me at \texttt{ivan dot valbusa at univr dot it}. If you need specific features not already implemented, remember to attach the example files.

\bigskip

\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}[fragile]{How to load the theme}

If you do not like sectioning:
\begin{itemize}
\item \verb!\usetheme{Verona}!
\end{itemize}

If you like sectioning:
\begin{itemize}
\item \verb!\usetheme[secheader]{Verona}!
\end{itemize}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Coming soon}

A template will be available as soon as possible

\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Blocks}

\begin{block}{Normal block}
Lorem ipsum dolor sit amet
\end{block}

\begin{exampleblock}{Example block}
Lorem ipsum dolor sit amet
\end{exampleblock}

\begin{alertblock}{Alert block}
Lorem ipsum dolor sit amet
\end{alertblock}

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Itemize}
\begin{itemize}
\item one
\item two
\begin{itemize}
\item one
\item two
\item three
\end{itemize}
\item three
\end{itemize}

\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Description}
\begin{description}
\item[Plato] A philosopher
\item[Hegel] A philosopher
\item[Peirce] Peirce
\end{description}

\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------- FRAME ------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Enumerate}

\begin{enumerate}
\item One
\item Two
\item Three
\end{enumerate}

\end{frame}

\end{document}