diff options
author | Karl Berry <karl@freefriends.org> | 2017-12-19 00:09:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-12-19 00:09:01 +0000 |
commit | 5d4ee22f407e4c60e9f6ee586d4152a3d6d7287e (patch) | |
tree | e60908ef9f37f35a3e6ccdcc02d23c65f7a2ad02 /Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex | |
parent | bf2407a74d6c70f8b53038edf84e01255513a57c (diff) |
beamer (18dec17)
git-svn-id: svn://tug.org/texlive/trunk@46095 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex b/Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex new file mode 100644 index 00000000000..e537d7cd3ad --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamer/beamerthemeexamplebase.tex @@ -0,0 +1,53 @@ +% Copyright 2003--2007 by Till Tantau +% Copyright 2010 by Vedran Mileti\'c +% Copyright 2015 by Vedran Mileti\'c, Joseph Wright +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Free Documentation License. +% +% See the file doc/licenses/LICENSE for more details. + +\beamertemplatesolidbackgroundcolor{black!5} +\beamertemplatetransparentcovered + +\usepackage{times} + +\title{There Is No Largest Prime Number} +\subtitle{With an introduction to a new proof technique} + +\author[Euklid]{Euklid of Alexandria} +\institute[Univ. Alexandria]{Department of Mathematics\\ University of Alexandria} +\date[ISPN '80]{27th International Symposium on Prime Numbers, --280} + +\begin{document} + +\begin{frame} + \titlepage + \tableofcontents +\end{frame} + +\section{Results} +\subsection{Proof of the Main Theorem} + +\begin{frame}<1> + \frametitle{There Is No Largest Prime Number} + \framesubtitle{The proof uses \textit{reductio ad absurdum}.} + + \begin{theorem} + There is no largest prime number. + \end{theorem} + \begin{proof} + \begin{enumerate} + % The strange way of typesetting math is to minimize font usage + % in order to keep the file sizes of the examples small. + \item<1-| alert@1> Suppose $p$ were the largest prime number. + \item<2-> Let $q$ be the product of the first $p$ numbers. + \item<3-> Then $q$\;+\,$1$ is not divisible by any of them. + \item<1-> Thus $q$\;+\,$1$ is also prime and greater than $p$.\qedhere + \end{enumerate} + \end{proof} +\end{frame} + +\end{document} |