-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample-presentation.tex
72 lines (58 loc) · 2.41 KB
/
example-presentation.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
\documentclass[aspectratio=169]{beamer} % remove aspectratio=169 if you want the slides to be in 4:3 aspect ratio.
\usetheme[displaytocsection]{ISG}
\title{Example Beamer Presentation}
\subtitle{A Demonstration of the ISG Beamer Template}
\author[R. Lee \& D. Hutchinson]{Robert Lee and Daniel Hutchinson}
\institute{Information Security Group,\\
Royal Holloway}
\begin{document}
\rhultitlepage
\begin{frame}\frametitle{Presentation Contents}
\tableofcontents
\end{frame}
\section{Title Page}
\begin{frame}\frametitle{RHUL Title Page}
\begin{itemize}
\item We (the authors of this theme) think that the title page looks better if it has the single colour footer.
\item To use this option simply create your title page slide using \texttt{\textbackslash rhultitlepage} (don't put it in a frame).
\item If you wish to have the same footer on every slide, including title page, just create the title page in the normal way e.g. \texttt{\textbackslash frame\{\textbackslash titlepage\}}.
\end{itemize}
\end{frame}
\section{Table of Contents}
\begin{frame}\frametitle{Showing Progress Through the Presentation}
\begin{itemize}
\item The beamer style is also able to show a table of contents whenever a new section or subsection is begun.
\item These options are selected by passing the appropriate parameters when using the ISG theme.
\item E.g.\ \texttt{\textbackslash usetheme[displaytocsection]\{ISG\}} or \texttt{\textbackslash usetheme[displaytocsubsection]\{ISG\}}.
\end{itemize}
\end{frame}
\setbeamercovered{invisible}
\section{Example Slides}
\begin{frame}\frametitle{Invisible Covering/Uncovering of Content}
\begin{itemize}
\item I'm the first item!
\pause
\item I was invisible!
\pause
\item Invisible is selected by \texttt{\\setbeamercovered\{invisible\}}
\end{itemize}
\end{frame}
\setbeamercovered{transparent}
\begin{frame}\frametitle{Transparent Covering/Uncovering}
\begin{itemize}
\item I'm the first item!
\pause
\item I was transparent!
\pause
\item Transparent is selected by \texttt{\\setbeamercovered\{transparent\}}
\end{itemize}
\end{frame}
\section{One more thing}
\begin{frame}\frametitle{A quirk of the ISG style}
\begin{itemize}
\item The title page has a few ``quirks'' due to the way it has been implemented.
\item This means that you have to build your .tex file three times before things are in the right place.
\item This is less tedious if you use a make file!
\end{itemize}
\end{frame}
\end{document}