-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMcMasterU.tex
144 lines (95 loc) · 3.29 KB
/
McMasterU.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
\documentclass[12pt]{beamer}
% Specify theme
\usetheme{McMasterU}
% Start Changes by Ricardo
\setbeamercolor{section in head/foot}{fg=white,bg=black}
\makeatletter
\setbeamertemplate{headline}{%
\begin{beamercolorbox}[ht=2.25ex,dp=3.75ex]{section in head/foot}
\insertnavigation{\paperwidth}
\end{beamercolorbox}%
}%
\makeatother
% End Changes by Ricardo
%\setbeamertemplate{footline}[frame number]{} % Uncomment this line if you want to remove the footer from each slide (and replace it with just the slide number (X/Y) in the bottom right of each slide.
%===============================================================%
% BEGIN YOUR PRESENTATION HERE %
%===============================================================%
% Title and author information
\title[Short title]{Your Presentation Title}
\author{Your Name}
\institute[]{McMaster University}
\date{\today}
% \usepackage[sfmath]{kpfonts}
% \renewcommand*\familydefault{\sfdefault}
%\setbeamerfont{frametitle}{shape=\scshape}
%===============================================================%
\begin{document}
%===============================================================%
\maketitle
%===============================================================%
\section{Lists}
%===============================================================%
\subsection{}
\begin{frame}{Itemized List}
Itemized lists are punctuated by little shields
\begin{itemize}
\item Item
\item Item
\begin{itemize}
\item Sub-item
\item Sub-item
\end{itemize}
\item Item
\end{itemize}
\end{frame}
\begin{frame}{Enumerate}
\begin{enumerate}
\item Item
\item Item
\begin{enumerate}
\item Sub-item
\end{enumerate}
\end{enumerate}
\end{frame}
%===============================================================%
\section{Animations}
%===============================================================%
\subsection{}
\begin{frame}{Slide animation}
Sometimes you want to hide later text/elements of a particular slide to keep the focus on the early part of the slide.
\bigskip
\onslide<2>{By having the text shaded out (and not completely missing), your audience can see that you do have some more information that will come shortly.}
\end{frame}
%===============================================================%
\section{Blocks}
%===============================================================%
\subsection{}
\begin{frame}{Blocks}
\begin{block}{Regular Block}
Text goes here
\end{block}
\begin{alertblock}{Alert Block}
Stands out a bit more
\end{alertblock}
\begin{exampleblock}{Example Block}
Also stands out $y=\beta x+ \varepsilon$
\end{exampleblock}
\end{frame}
%===============================================================%
\appendix
%===============================================================%
{\BackgroundShaded
\begin{frame}
% BLANK FRAME AT THE END
\end{frame}
}
%===============================================================%
\section{First appendix section}
%===============================================================%
\begin{frame}{Appendix sample}
Note that this slide doesnt count towards the total slides shown in the regular presentation
\end{frame}
%===============================================================%
\end{document}
%===============================================================%