-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.tex
70 lines (59 loc) · 1.19 KB
/
sample.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
\documentclass{beamer}
\usepackage{blindtext}
\usepackage{graphicx}
\title[Short Title]{Longer Full Sample Title}
\subtitle{Sample Subtitle}
\author{Ben Morcos}
\date{January 7, 2019}
\usetheme{ABR}
\begin{document}
\frame {
\titlepage
}
\section{First Section}
\frame {
\frametitle{Mathmode}
This is the quadratic equation:
\begin{align}
\frac{-b \pm \sqrt{b^2 - c}}{2a}
\end{align}
}
\frame{
\frametitle{Some bullet points}
\framesubtitle{And a list!}
\begin{itemize}
\item 1
\begin{itemize}
\item 1.1
\end{itemize}
\item 2
\item 3
\end{itemize}
Text between? \\
Why not.
\begin{enumerate}
\item A thing
\begin{enumerate}
\item A related thing
\item \alert{An important thing}
\end{enumerate}
\item Another thing
\end{enumerate}
}
\section{Another Section}
\frame{
\frametitle{Paragraph Content}
\framesubtitle{Latin is cool}
\blindtext
}
\frame{
\frametitle{Figures}
\framesubtitle{With caption}
\begin{figure}
\centering
\includegraphics[height=0.6\textheight]{example-image}
\vspace{-10pt}
\caption{Built in examples are \alert{\textbf{genius}}}
\end{figure}
}
\end{document}