-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathframes_examples.tex
105 lines (88 loc) · 2.28 KB
/
frames_examples.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
104
105
% Slides examples
\begin{frame}[fragile]{Title}
\begin{verbatim}Verbatim, minted, ... needs [fragile]\end{verbatim}
\end{frame}
\begin{frame}{Contents}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
\begin{frame}{Typography}
\begin{itemize}
\item \emph{emphasize}
\item \alert{accent}
\item \textbf{bold}
\end{itemize}
\end{frame}
\begin{frame}{Font types}
\begin{itemize}
\item Regular
\item \textit{Italic}
\item \textsc{SmallCaps}
\item \textbf{Bold}
\item \textbf{\textit{Bold Italic}}
\item \textbf{\textsc{Bold SmallCaps}}
\item \texttt{Monospace}
\item \texttt{\textit{Monospace Italic}}
\item \texttt{\textbf{Monospace Bold}}
\item \texttt{\textbf{\textit{Monospace Bold Italic}}}
\end{itemize}
\end{frame}
\begin{frame}{Columns}
\begin{columns}[T,onlytextwidth]
\column{0.5\textwidth}
1st column
\column{0.5\textwidth}
2nd column
\end{columns}
\end{frame}
\begin{frame}{Animations}
\begin{itemize}[<+- | alert@+>]
\item \alert<4>{This is\only<4>{ really} important}
\item Now this
\item And now this
\end{itemize}
% see also pause
\end{frame}
\begin{frame}{Tables}
\begin{table}
\caption{Largest cities in the world (source: Wikipedia)}
\begin{tabular}{lr}
\toprule
City & Population\\
\midrule
Mexico City & 20,116,842\\
Shanghai & 19,210,000\\
\bottomrule
\end{tabular}
\end{table}
\end{frame}
\begin{frame}{Blocks}
\begin{block}{Default}
Block content.
\end{block}
\begin{alertblock}{Alert}
Block content.
\end{alertblock}
\metroset{block=fill}
\begin{exampleblock}{Example}
Block content.
\end{exampleblock}
\end{frame}
\begin{frame}{Quotes}
\begin{quote}
Veni, Vidi, Vici
\end{quote}
\end{frame}
{%
\setbeamertemplate{frame footer}{Footer example}
\begin{frame}{Footer example}
\end{frame}
}
\begin{frame}[standout]
Questions?
\end{frame}
\begin{frame}[allowframebreaks]{Bibliography}
\nocite{...}
\bibliography{demo}
\bibliographystyle{abbrv}
\end{frame}