-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathexample_talk.tex
92 lines (62 loc) · 2 KB
/
example_talk.tex
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
\documentclass[11 pt,t]{beamer}
\usetheme[
bullet=circle, % Other option: square
bigpagenumber, % circled page number on lower right
topline=true, % colored bar at the top of the frame
]{Zurich}
%-----------------------------------------------------------------------------
% DOCUMENT PROPERTIES
\author{Patrick Pletscher}
\title{Zurich Beamer Theme}
%-----------------------------------------------------------------------------
\begin{document}
% ----------------------------------------------------------------------------
\frame{
\titlepage
}
% ----------------------------------------------------------------------------
\section{Example}
% ----------------------------------------------------------------------------
\begin{frame}
\frametitle{Fonts}
\framesubtitle{Handwriting}
\begin{itemize}
\item Line 1.
\only<2->{
\item Line 2.\\
{\handwriting \textcolor{tangocolordarkchameleon}{Less formal} }
}
\only<3->{
\item Line 3.\\
{\handwriting \textcolor{tangocolordarkscarletred}{
Less formal, different color.} }
}
\end{itemize}
\end{frame}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\begin{frame}
\frametitle{Blocks}
\begin{block}{Standard Block}
This is a standard block.
\end{block}
\begin{exampleblock}{Example Block}
This is an example block.
\end{exampleblock}
\begin{alertblock}{Alert Block}
This is an alert block.
\end{alertblock}
\end{frame}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\usebackgroundtemplate{
\includegraphics[width=\paperwidth,
height=\paperheight]{aletsch}
}
\begin{frame}
\ \\ \ \\
\centering \Large \textcolor{white}{Questions?}
\end{frame}
\usebackgroundtemplate{}
% ----------------------------------------------------------------------------
\end{document}