Do not put the frontmatter titles into the header area.
[matthijs/master-project/report.git] / Report.tex
index c7a4e9df9319d605476d15ebaef3aa4751edf774..59b8010a00251aecb128990cb4261803c8d85942 100644 (file)
@@ -1,10 +1,19 @@
 \mainlanguage [en]
 \setuppapersize[A4][A4]
-% Enable interaction (clickable links), but don't use special link colors.
-\setupinteraction[state=start,color=,contrastcolor=]
+% Setup doublesided layout and hide the page number (we will put in the
+% footer)
+\setuppagenumbering[alternative=doublesided,location=]
+% Enable interaction (clickable links), but don't use special link colors or a
+% bold style.
+\setupinteraction[state=start,color=,contrastcolor=,style=normal]
 % Enable interaction in the table of contents as well
 \setupcombinedlist[content][interaction=all]
 
+% Use bibtex
+\usemodule[bib]
+\setupbibtex[database=Report]
+\setuppublications[numbering=yes]
+
 \input Utils/Fonts
 \input Utils/Formats
 \input Utils/Lambda
 
 \usetypescript [Custom]
 
-% Use our custom typeface
+% Use our custom typeface in the body text, header, footer and
+% footnotes. There is probably a more elegant way to change the header
+% etc. fonts, but this works...
 \switchtotypeface [Custom] [10pt]
+\setupheader[style={\switchtotypeface[Custom][12pt]}]
+\setupfooter[style={\switchtotypeface[Custom][12pt]}]
+\setupfootnotes[style={\switchtotypeface[Custom][10pt]\italic},way=bypage]
+
+% Hide header texts and use the header space for text.
+\setuphead[chapter][header=high]
+% But not for the abstract, acknowledgements and toc
+\setuphead[title][header=empty]
+
+% Insert completely empty pages to put new chapter headers on the right
+% page (i.e., not headers and footers).
+\definepagebreak[emptyright][yes,header,footer,right]
+\setuphead[chapter][page=emptyright]
 
 % Reducing margins (or actually, the spacing in which the margins end up) for
 % 2-up printing and increase font size slightly.
 %\switchtotypeface [Custom] [10pt]
 
 \starttext
-% TODO: Proper title page
-\title {Haskell as a higher order structural hardware description language.}
-Matthijs Kooijman
-
-\todo{Complete titlepage}
+\startfrontmatter
+\input Titlepage
 
+\input Chapters/Abstract
 \completecontent
 
+% Force a page break so the headers will not apply to the last page of
+% the contents. This page break would otherwise be inserted by the
+% upcoming \chapter.
+\page[emptyright]
+% Set up a simple header and footer for the introduction
+\setupheadertexts[{\getmarking[chapter]}]
+\setupfootertexts[pagenumber]
+
 \input Chapters/Introduction
+% The stopfrontmatter inserts a non-empty right page, it seems
+\page[emptyright]
+\stopfrontmatter
+\startbodymatter
+% Set up a fancy header and footer for the normal chapters. We need to
+% repeat the footer since we switched matters.
+\def\Header{\getmarking[sectionnumber]~—~\getmarking[chapter]~—~\getmarking[section]}
+\setupheadertexts[][\Header]
+\setupfootertexts[pagenumber]
+
 \input Chapters/Context
 \input Chapters/HardwareDescription
 \input Chapters/Prototype
 \input Chapters/Normalization
 \input Chapters/Future
+\input Chapters/Conclusions
+\stopbodymatter
+\startbackmatter
+\completepublications
+% The stopbackmatter inserts a non-empty right page, it seems
+\page[emptyright]
+\stopbackmatter
 \stoptext
 
 % vim: set sw=2 sts=2 expandtab: