-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-slides.tex
More file actions
91 lines (69 loc) · 1.92 KB
/
sample-slides.tex
File metadata and controls
91 lines (69 loc) · 1.92 KB
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
\documentclass[ignorenonframetext,t]{beamer}
\usepackage{unswlecture}
\title[Lecture 1]
{Lecture 1: Title of this lecture}
\subtitle{CEIC1234: Title of this course}
\author[ANO]
{A.N.~Other}
\institute[UNSW]{
Room 123\\
Some Engineering Building (A12)\\
~\\
some.lecturer@unsw.edu.au
}
\date[CEIC1234 2017]{} % include on all slides with frame number
% -------------------------------------------------------------------------
% -------------------------------------------------- Title page
\begin{document}
\begin{frame}[plain,label=]
\titlepage
\end{frame}
% -------------------------------------------------------------------------
% -------------------------------------------------- Outline of lecture
%
\section*{Outline}
\begin{frame}[label=]
\frametitle{Today}
\tableofcontents
\end{frame}
% -------------------------------------------------------------------------
% -------------------------------------------------- Section 1
%
\section{Sample section}
\subsection{Sample subsection 1}
\begin{frame}<article:0>[label=]
\frametitle{Sample frame number 1}
Some text with an \alert{alert} in it.
\begin{columns}[T]
\begin{column}{0.47\textwidth}
\begin{block}{Block title}
note this!
\end{block}
\begin{exampleblock}{Example title}
note this!
\end{exampleblock}
\end{column}
\begin{column}{0.47\textwidth}
\begin{alertblock}{Alert block title}
note this!
\end{alertblock}
\end{column}
\end{columns}
\end{frame}
\subsection{Sample subsection 2}
\begin{frame}[label=]
\frametitle{Frame title}
Frame text with dot points
\begin{itemize}
\item bullet point 1
\item bullet point 2
\item bullet point 3
\end{itemize}
And some further points that will be numbered
\begin{enumerate}
\item numbered point 1
\item numbered point 2
\item numbered point 3
\end{enumerate}
\end{frame}
\end{document}