summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/talk/example.tex
blob: 3cadee32c3cf85469737b2884774263a22a98ce1 (plain)
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
\documentclass[12pt,screen]{talk}
%\documentclass[12pt,slides]{talk}
%\documentclass[12pt,notes]{talk}

\usepackage{sidebars}

\slidesmag{1.5}

\title{My Test Talk}
\author[John Smith]{John Smith\thanks{Some bloke.}}


\begin{document}

\begin{slide}[plain]{}
  \maketitle
\end{slide}
\begin{slide}[outline]{My Table of Contents}
  \tableofcontents
\end{slide}

\section{First Section}

\begin{slide}{My Title}
  Stuff.\footnote{My footnote}
\end{slide}
\begin{notes}
  Some notes about this slide.
\end{notes}

\subsection{First Subsection}
\begin{slide}{Another Title}
  More stuff.
\end{slide}
\begin{slide}{Yet Another Title}
  Even more stuff.
\end{slide}

\subsection{Second Subsection}
\begin{slide}{First Slide in Second Subsection}
  Blah blah bla...
\end{slide}

\section{Second Section}

\begin{slide}{A Slide in Section Two}
  ...you get the idea.
\end{slide}

\subsection{Subsection 2.1}
\begin{multislide}{3}{Multislide Example}
  A few bullet points:
  \begin{itemize}
  \item Bullet 1
  \fromslide{2}{\item Bullet 2}
  {\onlyslide*{3}{\color{red}}\item Bullet 3}
  \end{itemize}
  \onlyslide*{1}{You can only see bullets 1 and 3.}%
  \onlyslide*{2}{You can see all bullets.}
  \onlyslide*{3}{Now bullet 3 is red.}
\end{multislide}

\end{document}