-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeamerthemeorg-demo.tex
100 lines (88 loc) · 2.11 KB
/
beamerthemeorg-demo.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
%% beamercolorthemeorg.sty
%%
%% Copyright 2007 by Till Tantau and 2013 by Marcin Borkowski
%%
%% This beamer theme is based on Till Tantau's default Beamer theme,
%% with modifications by Marcin Borkowski.
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, version 1.3c,
% found in the file lppl.txt.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is Marcin Borkowski <[email protected]>.
%
% This work consists of the files:
% beamercolorthemeorg.sty
% beamerfontthemeorg.sty
% beamerinnerthemeorg.sty
% beamerouterthemeorg.sty
% beamerthemeorg.sty
% beamerthemeorg-demo.tex
\documentclass{beamer}
\usetheme{org}
\setbeamertemplate{itemize subitem}[plus]
\begin{document}
\author{Marcin Borkowski}
\title{An example presentation}
\subtitle{using the \texttt{beamer} package and the \orgbf{org} theme}
\date{\today}
\institute{\texttt{http://mbork.pl}}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}
\frametitle{Contents}
\tableofcontents
\end{frame}
\section{First section}
\subsection{Subsection}
\begin{frame}
An example frame.
\end{frame}
\begin{frame}
\frametitle{A frame with a definition and an example}
\begin{definition}
Very \alert{cool} definition.
\end{definition}
\begin{example}
And a~fine example.
\end{example}
\begin{alertblock}{Look here!}
And this is an \orgit{alert block}.
\end{alertblock}
\end{frame}
\begin{frame}[label=enumerations]
\frametitle{Enumerations}
\begin{itemize}[<+->]
\item qwerty
\item asdf
\begin{itemize}[<+->]
\item as
\item df
\end{itemize}
\item zxcvbnm
\begin{itemize}[<+->]
\item 1234
\begin{itemize}[<+->]
\item 567
\end{itemize}
\end{itemize}
\end{itemize}
\end{frame}
\subsection{Second subsection}
\begin{frame}
\frametitle{A frame with a theorem}
\begin{theorem}
A cool theorem.
\begin{equation*}
a^2+b^2=c^2\cdot\int_0^\infty f(x)\,dx
\end{equation*}
\end{theorem}
\pause
\begin{proof}
With a cool proof.
\end{proof}
\end{frame}
\end{document}