All content done
[ai-gitflashtalk.git] / preamble.tex
1 \documentclass{beamer}
2
3 \usepackage{marvosym}
4 \usepackage[tone,safe]{tipa}
5 \usepackage{hyperref}
6 \usepackage{listings}
7
8 \input{vc.tex}
9
10 \title[GIT]{GIT flashtalk}
11 \subtitle{A short introduction to GIT}
12 \author[Lubbers]{M.~Lubbers\inst{1}}
13 \institute[Radboud University]{%
14 \inst{1}%
15 Artificial Intelligence\\
16 Radboud University Nijmegen
17 }
18 \date[2015]{\today}
19 \subject{GIT}
20
21 \lstset{%
22 basicstyle=\scriptsize\ttfamily,
23 language=bash,
24 breakatwhitespace=true,
25 breaklines=true,
26 keepspaces=true,
27 showspaces=false,
28 showstringspaces=false,
29 columns=flexible,
30 mathescape=true,
31 emph={frobnicator@frobmachine},
32 emphstyle=\bfseries
33 }
34
35 \AtBeginSection[]
36 {%
37 \begin{frame}
38 \frametitle{Table of Contents}
39 \tableofcontents[currentsection]
40 \end{frame}
41 }