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