-
Notifications
You must be signed in to change notification settings - Fork 8
/
tcr.tex
40 lines (34 loc) · 873 Bytes
/
tcr.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
\documentclass[a4paper,9pt]{scrartcl}
% 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{26. November 2017}
\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{other/other}
\end{multicols*}
\end{document}