blob: b47f1b784d678b795cf85c9204852456b13a11fc (
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
|
% 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{nosep}
% Multicol layout for the table of contents.
\usepackage{multicol}
\usepackage{multirow}
% Automatically have table fill horizontal space.
\usepackage{tabularx}
% Nice table line.
\usepackage{booktabs}
% Dingbats symbols.
\usepackage{pifont}
|