-
Notifications
You must be signed in to change notification settings - Fork 1
/
Template.tex
58 lines (40 loc) · 928 Bytes
/
Template.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
\documentclass[aspectratio=1610, t]{beamer}
\usepackage{beamer-package}
\title{The Title}
\subtitle{The Subtitle}
\date{\today}
\author{Author1 Author2 ...}
\supervisor{Supervisor}
\logopath{res/logo}
\begin{document}
\begin{frame}%
\titlepage
\end{frame}
\begin{frame}%
\frametitle{Table of contents}
\tableofcontents
\end{frame}
\section{Section 1}
\begin{frame}[fragile]
\frametitle{Title 1}
\framesubtitle{Subtitle 1.}
\begin{multicols}{2}
\begin{TextColor}{TextColor block}{orange}
\begin{List}{orange}
\item some item
\item some item
\item some item
\end{List}
\end{TextColor}
\begin{CodeListings}{Code block}{c++}
int i = 0; // Listings
std::cout << i << std::endl;
\end{CodeListings}
\columnbreak
\begin{Text}{Text block}\newline
some text
\end{Text}
\image{res/titlepage}{1}
\end{multicols}
\end{frame}
\end{document}