-
Notifications
You must be signed in to change notification settings - Fork 7
/
example.tex
66 lines (48 loc) · 1.17 KB
/
example.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
\documentclass[t]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{helvet}
\usepackage[english]{babel}
\usetheme{LUH}
\title{Some Presentation Title That's Long Enough To Need Two Lines}
\date[\today]{Converence XYZ, \today}
\author[Freeman]{Dr. Gordon Freeman}
%\unilogo{\includegraphics[height=\LUHLogoHeight]{luh_logo_rgb}}
%\logo{\includegraphics[height=\LUHLogoHeight]{department_logo}}
%\titleimage{\includegraphics[width=.7\paperwidth]{luh_title_image}}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Some frame title}
Some text.
\begin{itemize}
\item Hello,
\begin{itemize}
\item cruel
\begin{itemize}
\item world!
\end{itemize}
\end{itemize}
\item Example
\end{itemize}
\begin{enumerate}
\item Hello,
\begin{enumerate}
\item cruel
\begin{enumerate}
\item world!
\end{enumerate}
\end{enumerate}
\item Example
\end{enumerate}
\end{frame}
\begin{frame}{Some other frame}
\framesubtitle{With a subtitle}
\begin{block}{Block Header}
And some content.
And some more content.
And even more content.
\end{block}
\end{frame}
\end{document}