-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tex
73 lines (61 loc) · 1.49 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
67
68
69
70
71
72
73
\documentclass[11pt, compress, aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usetheme{Simple}
%\setbeamertemplate{footlinelogo}[empty]{}
%\setbeamertemplate{footlinelogo}[includegraphics]{example-image}
\title{My Title}
\subtitle{My Subtitle}
\author[Short Author]{%
Author\\[2pt]
\usebeamerfont{institute} \mail{e-mail@domain.edu}
}
\institute{Institute}
\date{\today}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{Table of Contents}
\tableofcontents
\end{frame}
\section{Environments}
\subsection{Itemize}
\begin{frame}{Itemize}
\begin{itemize}
\item Item 1.
\item Item 2.
\begin{itemize}
\item Subitem 1.
\end{itemize}
\end{itemize}
\vfill
\begin{enumerate}
\item Enumerated item 1.
\item Enumerated item 2.
\begin{enumerate}
\item Subitem 1.
\end{enumerate}
\end{enumerate}
\end{frame}
\subsection{Blocks}
\begin{frame}{Blocks}
\begin{block}{Block title}
Block content.
\end{block}
\begin{alertblock}{Alert block title}
Alert block content.
\end{alertblock}
\begin{exampleblock}{Example block title}
Example block content.
\end{exampleblock}
\end{frame}
\section{Commands}
\subsection{Highlight}
\begin{frame}{Highlight}
\begin{itemize}
\item \emph{Emphasize}
\item \alert{Alert}
\item Footnote\footnote{\url{www.wikipedia.org}}
\end{itemize}
\end{frame}
\end{document}