-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.tex
164 lines (111 loc) · 3.69 KB
/
main.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
%! TeX program = lualatex
% use lualatex as primary compiler
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
%| |%
%| By: Jeremy Lilly |%
%| 10/5/19 |%
%| |%
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\documentclass{beamer}
% Selects the theme defined in `beamerthemeOSU.sty`
\usetheme{OSU}
% Import additional packages here
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
%| |%
%| |%
%| |%
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
% User defined macros
\title[Short Title]{Long Title}
\subtitle{Subtitle}
\author{Jane Doe\inst{1} \and John Doe\inst{2}}
\department{Mathematics}
\institute{
\inst{1}Very Fancy University \\
\inst{2}Another Fancy University
}
\titlegraphic{\includegraphics[scale=0.05]{osu_theme_images/placeholder.png}}
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
%| |%
%| |%
%| |%
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\begin{document}
% Remove everything below this and replace with your own content
% The frames defined below show how different environments appear in the OSU theme
% The title slide
\begin{frame}
\maketitle
\end{frame}
% The TOC
\begin{frame}{Table of Contents}
\setcounter{framenumber}{1} % Sets the TOC to be the first numbered frame
\tableofcontents
\end{frame}
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\section{First Section}
\subsection{A Subsection}
\begin{frame}{Frame Title}{Frame Subtitle}
This is a frame with a title and a subtitle.
\end{frame}
\begin{frame}{\null}
This is a frame with no title.
\end{frame}
\begin{frame}
This is a frame with no header.
\end{frame}
\subsection{Another Subsection}
\begin{frame}{Text}
\underline{This is underlined text.}
\textit{This is italic text.}
\textbf{This is bold text.}
\texttt{This is mono-spaced text.}
\end{frame}
\begin{frame}{Lists}
This is a bulleted list:
\begin{itemize}
\item An item
\item Another item
\begin{itemize}
\item A subitem
\item Another subitem
\end{itemize}
\end{itemize}
This is a numbered list:
\begin{enumerate}
\item An item
\item Another item
\begin{enumerate}
\item A subitem
\item Another subitem
\end{enumerate}
\end{enumerate}
\end{frame}
\begin{frame}{Colored Blocks}
\begin{block}{Block Title}
This is a block.
\end{block}
\begin{alertblock}{Alert Block Title}
This is an alertblock.
\end{alertblock}
\begin{example}
This is an example block.
\end{example}
\end{frame}
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\section{Second Section}
\begin{frame}{Frame Title}
This is a frame the second section.
\end{frame}
\begin{frame}{Frame Title}
This is a frame with a...
\pause
\texttt{\textbackslash pause}.
\end{frame}
\section{Bibliography}
\nocite{einstein, knuthwebsite, latexcompanion}
\begin{frame}{Bibliography}
\bibliographystyle{plain}
\bibliography{bibliography_file}
\end{frame}
\end{document}