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\usetypescriptfile[dejavu]
28
29\starttypescriptcollection[notosans]
30
31 \doifunknownfontfeature {notomathbold} {\definefontfeature[notomathbold][boldened]}
32
33 \starttypescript [\s!serif] [noto] [\s!name]
34 \definefontsynonym [\s!Serif] [\s!file:NotoSerifRegular] [\s!features=\s!default]
35 \definefontsynonym [\s!SerifItalic] [\s!file:NotoSerifItalic] [\s!features=\s!default]
36 \definefontsynonym [\s!SerifBold] [\s!file:NotoSerifBold] [\s!features=\s!default]
37 \definefontsynonym [\s!SerifBoldItalic] [\s!file:NotoSerifBoldItalic] [\s!features=\s!default]
38 \stoptypescript
39
40 \starttypescript [\s!sans] [noto] [\s!name]
41 \setups[\s!font:\s!fallback:\s!sans]
42 \definefontsynonym [\s!Sans] [\s!file:NotoSansRegular] [\s!features=\s!default]
43 \definefontsynonym [\s!SansItalic] [\s!file:NotoSansItalic] [\s!features=\s!default]
44 \definefontsynonym [\s!SansBold] [\s!file:NotoSansSemiBold] [\s!features=\s!default]
45 \definefontsynonym [\s!SansBoldItalic][\s!file:NotoSansSemiBoldItalic][\s!features=\s!default]
46 \stoptypescript
47
48
49
50
51
52
53
54
55
56 \starttypescript [\s!math] [noto][\s!name]
57 \checkedmapfontsize[\typescripttwo][\s!script] [.70]
58 \checkedmapfontsize[\typescripttwo][\s!scriptscript][.55]
59 \stoptypescript
60
61 \starttypescript [\s!math] [noto][\s!name]
62 \definefontsynonym [\s!MathRoman] [\s!file:NotoSansMathRegular.otf][\s!features={\s!math\mathsizesuffix,noto:mathextra,mathextra},\s!goodies=notosansmath]
63 \definefontsynonym [\s!MathRomanBold][\s!file:NotoSansMathRegular.otf][\s!features={\s!math\mathsizesuffix,notomathbold,noto:mathextra,mathextra},\s!goodies=notosansmath]
64 \stoptypescript
65
66 \starttypescript [noto]
67 \definetypeface [\typescriptone] [\s!rm] [\s!serif] [\typescriptone] [\s!default]
68 \definetypeface [\typescriptone] [\s!ss] [\s!sans] [\typescriptone] [\s!default]
69 \definetypeface [\typescriptone] [\s!mm] [\s!math] [\typescriptone] [\s!default]
70 \definetypeface [\typescriptone] [\s!tt] [\s!mono] [dejavu] [\s!default]
71 \quittypescriptscanning
72 \stoptypescript
73
74\stoptypescriptcollection
75 |