Small update in makefile and content
[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=\footnotesize\ttfamily,
23 language=bash,
24 breakatwhitespace=true,
25 breaklines=true,
26 keepspaces=true,
27 showspaces=false,
28 showstringspaces=false,
29 columns=flexible,
30 emph={frobnicator@frobmachine},
31 emphstyle=\bfseries
32 }
33
34 \AtBeginSection[]
35 {%
36 \begin{frame}
37 \frametitle{Table of Contents}
38 \tableofcontents[currentsection]
39 \end{frame}
40 }