1
2
3
4
5
6
7
8
9
10
11
12
13
14\writestatus{loading}{ConTeXt Font Macros Libraries}
15
16\unprotect
17
18\registerctxluafile{fontini}{}
19\registerctxluafile{fontlog}{}
20\registerctxluafile{fontcon}{}
21\registerctxluafile{fontcft}{}
22\registerctxluafile{fontenc}{}
23\registerctxluafile{fontagl}{}
24\registerctxluafile{fontcid}{}
25\registerctxluafile{fontmap}{optimize}
26
27
28
29\registerctxluafile{fontotr}{optimize}
30\registerctxluafile{fontweb}{}
31\registerctxluafile{fontcff}{optimize}
32\registerctxluafile{fontttf}{optimize}
33\registerctxluafile{fontdsp}{optimize}
34\registerctxluafile{fonthsh}{}
35\registerctxluafile{fontvfc}{}
36\registerctxluafile{fontprv}{}
37\registerctxluafile{fontnod}{optimize}
38\registerctxluafile{fontoti}{}
39\registerctxluafile{fontott}{}
40\registerctxluafile{fontotl}{}
41\registerctxluafile{fontoto}{}
42\registerctxluafile{fontotj}{optimize}
43\registerctxluafile{fontoup}{}
44\registerctxluafile{fontota}{}
45\registerctxluafile{fontots}{optimize}
46\registerctxluafile{fontotd}{optimize}
47\registerctxluafile{fontotc}{}
48\registerctxluafile{fontoth}{}
49\registerctxluafile{fontosd}{}
50
51
52
53
54
55
56
57 \registerctxluafile{fontocm}{}
58
59
60
61
62\registerctxluafile{fontonr}{optimize}
63\registerctxluafile{fontone}{optimize}
64\registerctxluafile{fontafk}{}
65
66\registerctxluafile{fonttxt}{}
67
68
69
70\registerctxluafile{fonttpk}{optimize}
71\registerctxluafile{fonttfm}{}
72
73
74
75\registerctxluafile{fontsyn}{}
76\registerctxluafile{fonttrt}{}
77
78
79
80\registerctxluafile{fontshp}{}
81
82
83
84\registerctxluafile{fontpat}{}
85
86\registerctxluafile{nodefnt}{}
87
88\registerctxluafile{fontmps}{}
89
90\registerctxluafile{fontlua}{}
91
92\registerctxluafile{fontvir}{}
93\registerctxluafile{fontenh}{}
94
95\registerctxluafile{goodini}{}
96\registerctxluafile{goodgen}{}
97\registerctxluafile{goodctx}{}
98\registerctxluafile{goodmth}{}
99
100\registerctxluafile{fontdef}{}
101\registerctxluafile{fontctx}{}
102
103
104
105\registerctxluafile{fontimpligatures}{}
106\registerctxluafile{fontimptex}{}
107\registerctxluafile{fontimpreorder}{}
108\registerctxluafile{fontimpproperties}{}
109\registerctxluafile{fontimpunicode}{}
110\registerctxluafile{fontimpmath}{}
111\registerctxluafile{fontimpnotused}{}
112\registerctxluafile{fontimpeffects}{}
113\registerctxluafile{fontimpquality}{}
114\registerctxluafile{fontimpitalics}{}
115\registerctxluafile{fontimpdimensions}{}
116\registerctxluafile{fontimpspacekerns}{}
117\registerctxluafile{fontimptweaks}{}
118\registerctxluafile{fontimpcombining}{}
119
120\doifelsefileexists{fontimpscripts.lua} {
121 \registerctxluafile{fontimpscripts}{}
122} {
123
124}
125
126\registerctxluafile{fontimptracing}{}
127
128\registerctxluafile{fontfbk}{}
129
130\registerctxluafile{fontaux}{}
131
132\registerctxluafile{fontlig}{}
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154 \def\dolookupfontbyspec #1{\clf_fontlookupinitialize{#1}}
155 \def\dolookupnoffound {\clf_fontlookupnoffound}
156 \def\dolookupgetkeyofindex#1#2{\clf_fontlookupgetkeyofindex{#1}\numexpr#2\relax}
157 \def\dolookupgetkey #1{\clf_fontlookupgetkey{#1}}
158 \def\cleanfontname #1{\clf_cleanfontname{#1}}
159\unexpanded\def\setfontofid #1{\clf_setfontofid\numexpr#1\relax}
160
161
162
163
164\unexpanded\def\typethreefont#1{\setfontid#1\relax}
165\unexpanded\def\typethreechar#1{\char#1\hskip\fontcharwd\font#1\relax}
166\unexpanded\def\typethreelast#1{\char#1\relax}
167\unexpanded\def\typethreecode#1{\pdfliteral direct {#1}}
168
169\newtoks\typethreetoks
170\let \typethreemacro\empty
171
172\typethreetoks {
173 \setbox\zerocount\hpack{\typethreemacro}
174 \setbox\zerocount\hpack{\raise\dp\zerocount\box\zerocount}
175}
176\protect \endinput
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214 |