-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.tex
50 lines (40 loc) · 1.13 KB
/
main.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
\documentclass[compress]{beamer}
\usepackage{lmodern}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{minted}
\usepackage{epstopdf}
\usepackage{ulem}
\title{Git Gud \texttt{--fast-forward}}
\subtitle{Git voor beginners}
\author{Sticky: CommIT \& IT Crowd}
\date{28 november 2018}
\usetheme{Frankfurt}
\usecolortheme{dove}
\setbeamertemplate{section in toc}{\inserttocsectionnumber.~\inserttocsection}
\setbeamertemplate{itemize items}[default]
\setbeamertemplate{enumerate items}[default]
% ToC invoegen aan het begin van elke sectie.
\AtBeginSection
{
\begin{frame}
\tableofcontents[currentsection,hideallsubsections,subsubsectionstyle=hide]
\end{frame}
}
% Bron: https://en.wikibooks.org/wiki/LaTeX/Presentations
\definecolor{light-gray}{gray}{0.90}
\begin{document}
\frame{\titlepage
\begin{center}
Slides: \url{http://j.mp/gitgudslides} (\texttt{main.pdf})
\end{center}
}
\include{sections/git-waarom}
\include{sections/git-structuur}
\include{sections/installing}
\include{sections/gettingstarted}
\include{sections/branching}
\include{sections/collab}
\include{sections/whatsnext}
\end{document}