summaryrefslogtreecommitdiff
path: root/tcr.tex
blob: a54483a884a3987b9dd2b9526c397f26b61c1ca2 (plain)
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
\documentclass{article}

% General information.
\newcommand{\teamname}{ChaosKITs}
\newcommand{\university}{Karlsruhe Institute of Technology}

% Font encoding.
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}

% Include headers.
\input{latexHeaders/layout}
\input{latexHeaders/math}
\input{latexHeaders/listings}

% Title and author information.
\title{Team Contest Reference}
\author{\teamname \\ \university}
\begin{document}

% Titlepage with table of contents.
\maketitle
\setlength{\columnsep}{1cm}
\begin{multicols}{2}
	\tableofcontents
\end{multicols}
\newpage

% Content.
\begin{multicols*}{2}
  \input{datastructures/datastructures}
  \input{graph/graph}
  \input{geometry/geometry}
  \input{math/math}
  \input{string/string}
  \input{java/java}
  \input{other/other}
\end{multicols*}
\end{document}