summaryrefslogtreecommitdiff
path: root/content/tcr.tex
blob: 46a9a6a707e144ab2698500903a9e4d41d636ed4 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\documentclass[
	paper=a4,
	DIV=calc,
	fontsize=7.8pt,
	usegeometry
]{scrartcl}

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

% Options
\newif\ifoptional
\ifdefined\OPTIONAL
	\optionaltrue
\fi

% Font encoding.
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[hidelinks,pdfencoding=auto]{hyperref}

% Include headers.
\usepackage{latexHeaders/layout}
\usepackage{latexHeaders/math}
\usepackage{latexHeaders/code}
\usepackage{latexHeaders/commands}

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

% Titlepage with table of contents.
\setlength{\columnsep}{1cm}
\optional{
\maketitle
\begin{multicols*}{3}
	\tableofcontents
\end{multicols*}
}

\newpage

% Content.
\begin{multicols*}{3}
  \raggedcolumns
  \input{datastructures/datastructures}
  \input{graph/graph}
  \input{geometry/geometry}
  \input{math/math}
  \clearpage
  \input{string/string}
  \input{python/python}
  \input{other/other}
  \input{template/template}
  \clearpage
  \input{tests/test}
\end{multicols*}
\end{document}