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

\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}

\usepackage{color}
\definecolor{darkred}{rgb}{0.72,0.07,0.07}
\definecolor{darkgreen}{rgb}{0.23,0.62,0.22}

\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ihead{Karlsruhe Institute of Technology}
\chead{ChaosKITs}
\ohead{\pagemark}

\usepackage{listings}
\lstset{
	language={C++},
    	numbers=left,
     	stepnumber=1,
     	numbersep=6pt,
     	numberstyle=\footnotesize,
     	breaklines=true,
     	breakautoindent=true,
     	breakatwhitespace=false,
     	postbreak=\space,
     	tabsize=2,
     	basicstyle=\ttfamily\footnotesize,
     	showspaces=false,
     	showstringspaces=false,
     	extendedchars=true,
	keywordstyle=\color{blue}\bfseries,
	stringstyle=\color{darkred},
	commentstyle=\color{darkgreen}
}

\usepackage[top=2cm, bottom=2cm, left=3cm, right=2cm]{geometry}

\begin{document}

\input{maxFlow/maxFlow}

\end{document}