introduction done
[ai-gitworkshop.git] / pre.tex
1 \documentclass{beamer}
2
3 \usepackage[tone,safe]{tipa}
4 \usepackage{minted}
5 \usepackage{graphicx}
6 \usepackage{booktabs}
7 \usepackage{marvosym}
8
9 \usecolortheme{dove}
10 \usetheme{Singapore}
11
12 \title[Git]{Version control with Git}
13 \author[Lubbers]{M.~Lubbers~\inst{1}}
14 \institute[Radboud University]{%
15 \inst{1}%
16 Computing Science: Software Science\\
17 Radboud University Nijmegen
18 }
19 \date[2015]{\today}
20 \subject{Git}
21
22 % For the git sha hash
23 \input{vc.tex}
24
25 \graphicspath{{./img/}}
26
27 \setminted{%
28 fontsize=\scriptsize,
29 escapeinside=||
30 }
31
32 \hypersetup{%
33 pdftitle={Version control with Git},
34 pdfauthor={Mart Lubbers},
35 pdfsubject={git},
36 pdfcreator={Mart Lubbers},
37 pdfproducer={Mart Lubbers},
38 pdfkeywords={git},
39 hidelinks
40 }
41
42 \AtBeginSection[]{%
43 \begin{frame}
44 \frametitle{Table of Contents}
45 \tableofcontents[currentsection]
46 \end{frame}
47 }