-
Notifications
You must be signed in to change notification settings - Fork 9
/
beamer.tex
55 lines (46 loc) · 1.07 KB
/
beamer.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
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usetheme{#THEME}
\usecolortheme{#COLOR_THEME}
\title[Short Paper Title]{Presentation Title}
\subtitle{Presentation Subtitle}
\author[Author, Another]{F.~Author\inst{1} \and S.~Another\inst{2}}
\institute[Some University]
{
\inst{1}%
Department of Computer Science\\
University of Somewhere
\and
\inst{2}%
Department of Theoretical Philosophy\\
University of Elsewhere}
\date[Short Occasion]{Date / Occasion}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{First Section}
\subsection[Short First Subsection Name]{First Subsection Name}
\begin{frame}{This is the slide title.}{This is the slide subtitle.}
\begin{block}{Remark}
Sample text
\end{block}
\begin{itemize}
\item
An item
\item
Another item
\begin{itemize}
\item Something
\begin{itemize}
\item Something else
\end{itemize}
\end{itemize}
\begin{enumerate}
\item Thing A
\item Thing B
\item Thing C
\end{enumerate}
\end{itemize}
\end{frame}
\end{document}