Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 7733
1
\documentclass{beamer}
2
3
\usepackage{beamerthemeblackboard}
4
\usepackage{graphics}
5
\usepackage[all]{xy}
6
\usepackage[en-US]{datetime2}
7
\DTMsetup{datesep=/}
8
\DTMsetdatestyle{mmddyyyy}
9
10
\setbeamertemplate{headline}{
11
\rotatebox{30}{
12
\ifx\insertdate\empty\else
13
\hspace*{0.25cm}\ECFAugie\insertshortdate\hspace*{0.5cm}
14
\fi
15
}
16
\vspace*{-1cm}
17
}
18
19
\title[Beamer Blackboard Theme]{Simple Proof}
20
\author{Luis R. Guzman, Jr.}
21
\date[\today]{{\footnotesize \today}}
22
\institute{{\footnotesize University of West Florida}}
23
24
\begin{document}
25
26
% set handwritten font, necessary packages are loaded in beamerthemeblackboard.sty
27
\ECFAugie
28
29
\begin{frame}[t]
30
\maketitle
31
\end{frame}
32
33
\begin{frame}[t]
34
\frametitle{\Large Outline of Talk}
35
\begin{itemize}
36
\item Point one
37
\item Point two
38
\item ...
39
\end{itemize}
40
\end{frame}
41
42
\begin{frame}[t]
43
{1 = 0.999...}
44
Proof.
45
Set $x = 0.999\ldots$. Then
46
\begin{table}
47
\centering
48
\begin{tabular}{r r@{.} l}
49
& $10x$ $=$ $9$&$999\ldots$\\
50
$-$& $x$ $=$ $0$&$999\ldots$\\\hline
51
& $9x$ $=$ $9$&$000\ldots$
52
\end{tabular}
53
\end{table}
54
Thus $x = 1.000\dots$ $\Box$
55
\end{frame}
56
\end{document}
57