1
2
3
4
5
6
7
8
9
10
11
12
13
14\continuewhenmkivmode
15
16\startmodule[mathparameters]
17
18\registerctxluafile{smathparameters}{}
19
20\installmodulecommandluasingle \showmathspacing {moduledata.math.parameters.showspacing}
21\installmodulecommandluasingle \showmathparameters {moduledata.math.parameters.showparameters}
22
23\stopmodule
24
25\continueifinputfile{smathparameters.mkiv}
26
27\setuplayout
28 [width=middle,
29 height=middle,
30 backspace=1cm,
31 topspace=1cm,
32 footer=0pt,
33 header=0pt]
34
35\setupbodyfont
36 [dejavu,8pt]
37
38\starttext
39
40 \showmathspacing \page
41 \showmathparameters \page
42
43\stoptext
44 |