diff options
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/latex/beamer-verona/README | 33 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.pdf | bin | 0 -> 88238 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.tex | 140 |
3 files changed, 173 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/beamer-verona/README b/Master/texmf-dist/doc/latex/beamer-verona/README new file mode 100644 index 00000000000..4919b2cc8e1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamer-verona/README @@ -0,0 +1,33 @@ +----------------------------------------------------------------------- +The ‘Verona’ theme for Beamer +Author: Ivan Valbusa + ivan dot valbusa at univr dot it + +This work has the LPPL maintenance status "author-maintained". +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. +----------------------------------------------------------------------- + +DESCRIPTION: + +This package provides the 'Verona' theme for the Beamer class by Till Tantau. + +This work consists of the following files: + + README (this file) + beamercolorthemeVerona.sty + beamerfontthemeVerona.sty + beamerinnerthemeVerona.sty + beamerouterthemeVerona.sty + beamerthemeVerona.sty + beamer-verona.tex + beamer-verona.pdf + + +2015/11/25 +Ivan Valbusa diff --git a/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.pdf b/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.pdf Binary files differnew file mode 100644 index 00000000000..be1034e35a6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.pdf diff --git a/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.tex b/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.tex new file mode 100644 index 00000000000..cfc3e71b586 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamer-verona/beamer-verona.tex @@ -0,0 +1,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} |