blob: 2d9488c2f3c9292958f9ef049df2af9afb151f79 (
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
|
% Don't waste space at the page borders. Use two column layout.
\usepackage[
top=2cm,
bottom=1cm,
left=1cm,
right=1cm,
landscape
]{geometry}
% Headline and bottomline.
\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ihead{\university}
\chead{\teamname}
\ohead{\pagemark}
% Shift the title up to waste less space.
\usepackage{titling}
\setlength{\droptitle}{-8em}
% Nice enumerations without wasting space above and below.
\usepackage{enumitem}
\setlist{itemsep=1pt}
% Multicol layout for the table of contents.
\usepackage{multicol}
\usepackage{multirow}
% Automatically have table fill horizontal space.
\usepackage{tabularx}
|