forked from ppletscher/beamerthemezurich
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example_talk.tex
103 lines (82 loc) · 2.47 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
93
94
95
96
97
98
99
100
101
102
103
\documentclass[11 pt,t]{beamer}
% Use this to have panoramic 16:9 slides
%\documentclass[11pt, t, aspectratio=169]{beamer}
\usetheme[
bullet=circle, % Other option: square
bigpagenumber, % circled page number on lower right
% nofooter, % no footer
shadow=true, % shadow boxes
% watermart=, % watermark to be included
]{Santander}
\author{{\'A}lvaro L{\'o}pez Garc{\'i}a}
\title{Santander Theme}
\subtitle{A minimalistic beamer theme}
\institute{Center for minimalistic beamer themes}
\titlegraphic{\hfill\includegraphics[height=1.5cm]{logo}}
\begin{document}
\maketitle
\begin{frame}[noframenumbering, plain]{Table of contents}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
\section{Examples}
\subsection{Lists}
\begin{frame}
\frametitle{Lists}
\begin{columns}[T,onlytextwidth]
\column{0.33\textwidth}
Items
\begin{itemize}
\item Milk
\begin{itemize}
\item Cow
\item Sheep
\end{itemize}
\item Eggs
\item Potatos
\end{itemize}
\column{0.33\textwidth}
Enumerations
\begin{enumerate}
\item First,
\item Second and
\item Last.
\begin{enumerate}
\item But not,
\item least!
\end{enumerate}
\end{enumerate}
\column{0.33\textwidth}
Descriptions
\begin{description}
\item[PowerPoint] Meeh.
\item[Beamer] Yeeeha.
\end{description}
\end{columns}
\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}
\begin{noteblock}
This is a note
\end{noteblock}
\begin{noteblock}[wd=5cm]
Another note, with width
\end{noteblock}
\end{frame}
\plain{\Huge Questions?}
\addtocounter{framenumber}{-1}
\begin{frame}[c]{Extra page}{It doesn't add to the total page count}
\begin{itemize}
\item Use \alert{\texttt{addtocounter\{framenumber\}\{-1\}}} for extra slides (like this one) to prevent it from screwing up the page numbering.
\end{itemize}
\end{frame}
\end{document}