blob: 843798a35f4c3967fae089539b8a8c23718afda9 (
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
|
% 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}{-9em}
% Reduce spaces around sections and subsections.
\usepackage{titlesec}
\titlespacing*{\section}{0pt}{0pt}{0pt}
\titlespacing*{\subsection}{0pt}{0pt}{0pt}
% 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}
|