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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
\unprotect
\startmodule[art-01]
\definemeasure [article:margin] [\paperheight/20] % was 15, see xtables-mkiv for results
\definemeasure [overview:margin] [\paperheight/30]
\definelayout
[article]
[\c!topspace=\measure{article:margin},
\c!bottomspace=\measure{article:margin},
\c!backspace=\measure{article:margin},
\c!header=\measure{article:margin},
\c!footer=0pt,
\c!width=\v!middle,
\c!height=\v!middle]
\definelayout
[overview]
[\c!topspace=\measure{overview:margin},
\c!bottomspace=\measure{overview:margin},
\c!backspace=\measure{overview:margin},
\c!header=\measure{overview:margin},
\c!footer=0pt,
\c!width=\v!middle,
\c!height=\v!middle]
\setuplayout
[article]
\setupbodyfont
[dejavu,10pt] % 12pt is just to large and we use this for all kind of demos
\setupwhitespace
[\v!big]
\setuphead
[\v!chapter]
[\c!style=\bfc,
\c!headerstate=\v!high,
\c!interaction=\v!all]
\setuphead
[\v!section]
[\c!style=\bfb]
\setuphead
[\v!subsection]
[\c!style=\bfa]
\setuphead
[\v!subsubsection]
[\c!style=\bf,
\c!after=]
\setuplist
[\c!interaction=\v!all]
\protect
\stopmodule
|