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
63
64
|
\startenvironment spacing-style
\usemodule[abbreviations-words,typesetting]
\setupbodyfont
[pagella]
\setuplayout
[width=middle,
height=middle,
topspace=15mm,
header=15mm,
footer=0pt,
bottomspace=20mm]
\setuppagenumbering
[alternative=doublesided]
\setupwhitespace
[big]
\definecolor
[blackcolor]
[r=0,b=0,g=0]
\definecolor
[whitecolor]
[r=1,b=1,g=1]
\definecolor
[maincolor]
[.25(blackcolor,green)]
\definecolor
[extracolor]
[.25(whitecolor,green)]
% \blackrule[color=maincolor,width=10cm,,height=10cm]
% \blackrule[color=extracolor,width=10cm,,height=10cm]
\setuptyping
[color=maincolor]
\setuptype
[color=maincolor]
\setuphead
[chapter]
[style=\bfd,
color=maincolor]
\setuphead
[section]
[style=\bfc,
color=maincolor]
\setuphead
[subsubsection]
[style=bold,
color=maincolor,
before=\blank,
after=\blank]
\stopenvironment
|