-
Notifications
You must be signed in to change notification settings - Fork 3
/
caltech_beamer_template.tex
137 lines (100 loc) · 4.04 KB
/
caltech_beamer_template.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
\documentclass[hyperref={bookmarks=false},aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
% --------------- Define theme and color scheme -----------------
\usetheme[sidebarright]{Caltech} % 3 options: minimal, sidebarleft, sidebarright
% ------------ Information on the title page --------------------
\title[Caltech Tradition \& Pranks]
{\bfseries{Caltech student traditions and pranks}}
\subtitle{A brief overview}
\author[Mischief \& Managed]
{Mischief\inst{1} \and Managed\inst{2}}
\institute[Caltech]
{
\inst{1}
Department of Student Traditions\\
California Institute of Technology
\and
\inst{2}
Department of Student Pranks\\
California Institute of Technology
}
\date[ICUP, 2014]
{International Conference on University Pranks\\April 1st, 2014}
%------------------------------------------------------------
%------------------------------------------------------------
%The next block of commands puts the table of contents at the
%beginning of each section and highlights the current section:
\AtBeginSection[]
{
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents[currentsection]
\end{frame}
}
%------------------------------------------------------------
\begin{document}
\frame{\titlepage} % Creates title page
%--------- table of contents after title page ------------
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents
\end{frame}
%---------------------------------------------------------
\section{Caltech student traditions}
%---------------------------------------------------------
%Changing visivility of the text
\begin{frame}
\frametitle{Millikan pumpkin-drop experiment}
Every Halloween, Dabney House conducts the infamous ``Millikan pumpkin-drop experiment'' from the top of Millikan Library, the highest point on campus.
\begin{itemize}
\item<1-> A claim was once made that the shattering of a pumpkin frozen in liquid nitrogen and dropped from a sufficient height would produce a triboluminescent spark.
\item<2-> This yearly event involves a crowd of observers, who try to spot the elusive spark.
\item<3-> The title of the event is an oblique reference to the famous Millikan oil-drop experiment which measured $e$, the elemental unit of electrical charge.
\end{itemize}
\end{frame}
%---------------------------------------------------------
%---------------------------------------------------------
%\begin{frame} % Example of the \pause command
%This slide is to test mathematical formulas \pause
%
%$$E=mc^2$$ \pause
%
%as well as the ``pause'' functionality
%\end{frame}
%---------------------------------------------------------
\section{Caltech student pranks}
%---------------------------------------------------------
%Highlighting text
\begin{frame}
\frametitle{Caltech student pranks}
This is a brief introduction of \alert{Caltech pranks}.
\begin{block}{Definition}
Prank: a practical joke or mischievous act
\end{block}
\begin{alertblock}{Axiom}
Caltech pranks are a key part of the institute's history and identity.
\end{alertblock}
\begin{examples}
See the next slide for a prank example.
\end{examples}
\end{frame}
%---------------------------------------------------------
%---------------------------------------------------------
%Two columns
\begin{frame}
\frametitle{Hollywood sign}
\begin{columns}
\column{0.45\textwidth}
\begin{figure}
\centering
\includegraphics[width=\columnwidth]{./figures/hollywood_caltech.jpg}
\caption{``Hollywood is still mad about that,'' says Autumn Looijen, author of \emph{Legends of Caltech III: Techer In the Dark.} \tiny{(Photo downloaded from: http://brennen.caltech.edu/autobiography/automaster2.htm)}}
\label{fig:hollywood_prank}
\end{figure}
\column{0.55\textwidth}
In May 1987, undergraduates from Page and Ricketts houses combined forces (and several hundred dollars) to purchase enough black and white plastic, transformed the Hollywood sign to read ``Caltech''.
\small{(Reference: http://www.admissions.caltech.edu/pranks)}
\end{columns}
\end{frame}
%---------------------------------------------------------
\end{document}