diff options
author | Norbert Preining <preining@logic.at> | 2007-11-16 11:32:30 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-11-16 11:32:30 +0000 |
commit | a2cb9d37964308f856390aa46d841e196c72b852 (patch) | |
tree | 724d7b5b6a38c9a78b22a3816301c4742e8a8c1d /Master/texmf-dist/doc/latex/talk/example.tex | |
parent | 9de8fd57702cc88758133fd14eba8c985e1654bf (diff) |
talk v1.1
git-svn-id: svn://tug.org/texlive/trunk@5464 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/talk/example.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/talk/example.tex | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/talk/example.tex b/Master/texmf-dist/doc/latex/talk/example.tex new file mode 100644 index 00000000000..3cadee32c3c --- /dev/null +++ b/Master/texmf-dist/doc/latex/talk/example.tex @@ -0,0 +1,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} |