added thing about workshop repo
[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 fontseries=tt,
30 escapeinside=||,
31 breaklines
32 }
33
34 \hypersetup{%
35 pdftitle={Version control with Git},
36 pdfauthor={Mart Lubbers},
37 pdfsubject={git},
38 pdfcreator={Mart Lubbers},
39 pdfproducer={Mart Lubbers},
40 pdfkeywords={git},
41 hidelinks
42 }
43
44 \AtBeginSection[]{%
45 \begin{frame}
46 \frametitle{Table of Contents}
47 \tableofcontents[
48 currentsection,
49 currentsubsection,
50 hideothersubsections,
51 sectionstyle=show/shaded]
52 \end{frame}
53 }