1
2
3
4
5
6
7
8
9
10
11
12
13
14\startmodule[mathcoverage]
15
16\registerctxluafile{smathcoverage}{}
17
18\installmodulecommandluasingle \showmathalphabets {moduledata.math.coverage.showalphabets}
19\installmodulecommandluasingle \showmathcharacters{moduledata.math.coverage.showcharacters}
20\installmodulecommandluasingle \showmathscripts {moduledata.math.coverage.showscripts}
21\installmodulecommandluasingle \showmathbold {moduledata.math.coverage.showbold}
22\installmodulecommandluasingle \showmathentities {moduledata.math.coverage.showentities}
23
24\stopmodule
25
26\continueifinputfile{smathcoverage.mkiv}
27
28\usemodule[art01]
29
30\starttext
31
32 \showmathalphabets \page
33 \showmathcharacters \page
34 \showmathscripts \page
35 \showmathbold \page
36 \showmathentities \page
37
38\stoptext
39 |