Fix some more header stuff.
[matthijs/master-project/report.git] / Report.tex
1 \mainlanguage [en]
2 \setuppapersize[A4][A4]
3 % Setup doublesided layout and hide the page number (we will put in the
4 % footer)
5 \setuppagenumbering[alternative=doublesided,location=]
6 % Enable interaction (clickable links), but don't use special link colors or a
7 % bold style.
8 \setupinteraction[state=start,color=,contrastcolor=,style=normal]
9 % Enable interaction in the table of contents as well
10 \setupcombinedlist[content][interaction=all]
11
12 % Use bibtex
13 \usemodule[bib]
14 \setupbibtex[database=Report]
15 \setuppublications[numbering=yes]
16
17 \input Utils/Fonts
18 \input Utils/Formats
19 \input Utils/Lambda
20 \input Utils/Shortcuts
21 \input Utils/Metapost
22 \input Utils/Fixme
23
24 \usetypescript [Custom]
25
26 % Use our custom typeface in the body text, header, footer and
27 % footnotes. There is probably a more elegant way to change the header
28 % etc. fonts, but this works...
29 \switchtotypeface [Custom] [10pt]
30 \setupheader[style={\switchtotypeface[Custom][12pt]}]
31 \setupfooter[style={\switchtotypeface[Custom][12pt]}]
32 \setupfootnotes[style={\switchtotypeface[Custom][10pt]\italic}]
33
34 % Hide header texts and use the header space for text.
35 \setuphead[chapter][header=high]
36
37 % Insert completely empty pages to put new chapter headers on the right
38 % page (i.e., not headers and footers).
39 \definepagebreak[emptyright][yes,header,footer,right]
40 \setuphead[chapter][page=emptyright]
41
42 % Reducing margins (or actually, the spacing in which the margins end up) for
43 % 2-up printing and increase font size slightly.
44 %\setuplayout[backspace=2cm,width=middle,topspace=1cm,bottomspace=1cm,height=middle]
45 %\switchtotypeface [Custom] [10pt]
46
47 \starttext
48 \startfrontmatter
49 \input Titlepage
50
51 \completecontent
52
53 % Force a page break so the headers will not apply to the last page of
54 % the contents. This page break would otherwise be inserted by the
55 % upcoming \chapter.
56 \page[emptyright]
57 % Set up a simple header and footer for the introduction
58 \setupheadertexts[{\getmarking[chapter]}]
59 \setupfootertexts[pagenumber]
60
61 \input Chapters/Introduction
62 % The stopfrontmatter inserts a non-empty right page, it seems
63 \page[emptyright]
64 \stopfrontmatter
65 \startbodymatter
66 % Set up a fancy header and footer for the normal chapters. We need to
67 % repeat the footer since we switched matters.
68 \def\Header{\getmarking[sectionnumber]~—~\getmarking[chapter]~—~\getmarking[section]}
69 \setupheadertexts[][\Header]
70 \setupfootertexts[pagenumber]
71
72 \input Chapters/Context
73 \input Chapters/HardwareDescription
74 \input Chapters/Prototype
75 \input Chapters/Normalization
76 \input Chapters/Future
77 \input Chapters/Conclusions
78 \stopbodymatter
79 \startbackmatter
80 \completepublications
81 \stopbackmatter
82 \stoptext
83
84 % vim: set sw=2 sts=2 expandtab: