1\startmodule[mathverbatim]
2
3
4
5\definefontfeature[fixedwidth][fixedwidth=0.27]
6
7
8
9
10
11
12\definefontfallback
13 [MonoMathMath]
14 [cmuntt.otf*fixedwidth]
15 [0x04000x600]
16
17\definefontfallback
18 [MonoMathMath]
19 [concretemath.otf*fixedwidth]
20 [0x06000x1FFFF]
21
22\definefontsynonym
23 [MonoMathBase]
24 [lmmono10regular.otf*fixedwidth]
25 [fallbacks=MonoMathMath]
26
27
28
29
30
31
32\definefontfallback
33 [MonoTextMath]
34 [cmuntt.otf*fixedwidth]
35 [0x04000x600]
36
37\definefontfallback
38 [MonoTextMath]
39 [concretemath.otf]
40 [0x06000x1FFFF]
41
42\definefontsynonym
43 [MonoTextBase]
44 [lmmono10regular.otf]
45 [fallbacks=MonoTextMath]
46
47\definefontsynonym
48 [MonoMathBaseBold]
49 [lmmonolt10bold.otf*fixedwidth]
50 [fallbacks=MonoMathMath]
51
52\definefont[MyMathFont] [MonoMathBase]
53\definefont[MyMathFontBold][MonoMathBaseBold]
54\definefont[MyTextFont] [MonoTextBase]
55
56\setuptyping
57 [style=MyMathFont]
58
59\setuptype
60 [style=MyMathFont]
61
62\stopmodule
63 |