blob: e3fe6a44c7809286ed32eb7e88e10a9c3a5a1ad2 (
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
41
|
\documentclass{article}
% General information.
\newcommand{\teamname}{Hello KITty}
\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}
\date{20. November 2016}
\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}
|