dwml-ts 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js ADDED
@@ -0,0 +1,2332 @@
1
+ import { parse } from "txml";
2
+ const UNI2LATEX = {
3
+ 34: "''",
4
+ 35: "\\#",
5
+ 36: "\\$",
6
+ 37: "\\%",
7
+ 38: "\\&",
8
+ 60: "\\ensuremath{<}",
9
+ 62: "\\ensuremath{>}",
10
+ 92: "\\textbackslash",
11
+ 94: "\\textasciicircum",
12
+ 95: "\\_",
13
+ 123: "\\{",
14
+ 125: "\\}",
15
+ 126: "\\textasciitilde",
16
+ 160: "~",
17
+ 161: "\\textexclamdown",
18
+ 162: "\\textcent",
19
+ 163: "\\textsterling",
20
+ 164: "\\textcurrency",
21
+ 165: "\\textyen",
22
+ 166: "\\textbrokenbar",
23
+ 167: "\\textsection",
24
+ 168: "\\textasciidieresis",
25
+ 169: "\\textcopyright",
26
+ 170: "\\textordfeminine",
27
+ 171: "\\guillemotleft",
28
+ 172: "\\textlnot",
29
+ 173: "\\-",
30
+ 174: "\\textregistered",
31
+ 175: "\\textasciimacron",
32
+ 176: "\\textdegree",
33
+ 177: "\\ensuremath{\\pm}",
34
+ 178: "\\texttwosuperior",
35
+ 179: "\\textthreesuperior",
36
+ 180: "\\textasciiacute",
37
+ 181: "\\textmu",
38
+ 182: "\\textparagraph",
39
+ 183: "\\textperiodcentered",
40
+ 185: "\\textonesuperior",
41
+ 186: "\\textordmasculine",
42
+ 187: "\\guillemotright",
43
+ 188: "\\textonequarter",
44
+ 189: "\\textonehalf",
45
+ 190: "\\textthreequarters",
46
+ 191: "\\textquestiondown",
47
+ 192: "\\`A",
48
+ 193: "\\'A",
49
+ 194: "\\^A",
50
+ 195: "\\~A",
51
+ 196: "\\\"A",
52
+ 197: "\\r{A}",
53
+ 198: "\\AE",
54
+ 199: "\\c{C}",
55
+ 200: "\\`E",
56
+ 201: "\\'E",
57
+ 202: "\\^E",
58
+ 203: "\\\"E",
59
+ 204: "\\`I",
60
+ 205: "\\'I",
61
+ 206: "\\^I",
62
+ 207: "\\\"I",
63
+ 208: "\\DH",
64
+ 209: "\\~N",
65
+ 210: "\\`O",
66
+ 211: "\\'O",
67
+ 212: "\\^O",
68
+ 213: "\\~O",
69
+ 214: "\\\"O",
70
+ 215: "\\texttimes",
71
+ 216: "\\O",
72
+ 217: "\\`U",
73
+ 218: "\\'U",
74
+ 219: "\\^U",
75
+ 220: "\\\"U",
76
+ 221: "\\'Y",
77
+ 222: "\\TH",
78
+ 223: "\\ss",
79
+ 224: "\\`a",
80
+ 225: "\\'a",
81
+ 226: "\\^a",
82
+ 227: "\\~a",
83
+ 228: "\\\"a",
84
+ 229: "\\r{a}",
85
+ 230: "\\ae",
86
+ 231: "\\c{c}",
87
+ 232: "\\`e",
88
+ 233: "\\'e",
89
+ 234: "\\^e",
90
+ 235: "\\\"e",
91
+ 236: "\\`\\i",
92
+ 237: "\\'\\i",
93
+ 238: "\\^\\i",
94
+ 239: "\\\"\\i",
95
+ 240: "\\dh",
96
+ 241: "\\~n",
97
+ 242: "\\`o",
98
+ 243: "\\'o",
99
+ 244: "\\^o",
100
+ 245: "\\~o",
101
+ 246: "\\\"o",
102
+ 247: "\\textdiv",
103
+ 248: "\\o",
104
+ 249: "\\`u",
105
+ 250: "\\'u",
106
+ 251: "\\^u",
107
+ 252: "\\\"u",
108
+ 253: "\\'y",
109
+ 254: "\\th",
110
+ 255: "\\\"y",
111
+ 256: "\\={A}",
112
+ 257: "\\={a}",
113
+ 258: "\\u{A}",
114
+ 259: "\\u{a}",
115
+ 260: "\\k{A}",
116
+ 261: "\\k{a}",
117
+ 262: "\\'C",
118
+ 263: "\\'c",
119
+ 264: "\\^{C}",
120
+ 265: "\\^{c}",
121
+ 266: "\\.{C}",
122
+ 267: "\\.{c}",
123
+ 268: "\\v{C}",
124
+ 269: "\\v{c}",
125
+ 270: "\\v{D}",
126
+ 271: "\\v{d}",
127
+ 272: "\\DJ",
128
+ 273: "\\dj",
129
+ 274: "\\={E}",
130
+ 275: "\\={e}",
131
+ 276: "\\u{E}",
132
+ 277: "\\u{e}",
133
+ 278: "\\.{E}",
134
+ 279: "\\.{e}",
135
+ 280: "\\k{E}",
136
+ 281: "\\k{e}",
137
+ 282: "\\v{E}",
138
+ 283: "\\v{e}",
139
+ 284: "\\^{G}",
140
+ 285: "\\^{g}",
141
+ 286: "\\u{G}",
142
+ 287: "\\u{g}",
143
+ 288: "\\.{G}",
144
+ 289: "\\.{g}",
145
+ 290: "\\c{G}",
146
+ 291: "\\c{g}",
147
+ 292: "\\^{H}",
148
+ 293: "\\^{h}",
149
+ 294: "\\={H}",
150
+ 295: "\\={h}",
151
+ 296: "\\~{I}",
152
+ 297: "\\~{i}",
153
+ 298: "\\={I}",
154
+ 299: "\\={i}",
155
+ 300: "\\u{I}",
156
+ 301: "\\u{i}",
157
+ 302: "\\k{I}",
158
+ 303: "\\k{i}",
159
+ 304: "\\.I",
160
+ 305: "\\i",
161
+ 306: "\\IJ",
162
+ 307: "\\ij",
163
+ 308: "\\^{J}",
164
+ 309: "\\^{j}",
165
+ 310: "\\c{K}",
166
+ 311: "\\c{k}",
167
+ 312: "\\textsc{k}",
168
+ 313: "\\'L",
169
+ 314: "\\'l",
170
+ 315: "\\c{L}",
171
+ 316: "\\c{l}",
172
+ 317: "\\v{L}",
173
+ 318: "\\v{l}",
174
+ 319: "\\.{L}",
175
+ 320: "\\.{l}",
176
+ 321: "\\L",
177
+ 322: "\\l",
178
+ 323: "\\'N",
179
+ 324: "\\'n",
180
+ 325: "\\c{N}",
181
+ 326: "\\c{n}",
182
+ 327: "\\v{N}",
183
+ 328: "\\v{n}",
184
+ 329: "\\nument{149}",
185
+ 330: "\\NG",
186
+ 331: "\\ng",
187
+ 332: "\\={O}",
188
+ 333: "\\={o}",
189
+ 334: "\\u{O}",
190
+ 335: "\\u{o}",
191
+ 336: "\\H{O}",
192
+ 337: "\\H{o}",
193
+ 338: "\\OE",
194
+ 339: "\\oe",
195
+ 340: "\\'R",
196
+ 341: "\\'r",
197
+ 342: "\\c{R}",
198
+ 343: "\\c{r}",
199
+ 344: "\\v{R}",
200
+ 345: "\\v{r}",
201
+ 346: "\\'S",
202
+ 347: "\\'s",
203
+ 348: "\\^{S}",
204
+ 349: "\\^{s}",
205
+ 350: "\\c{S}",
206
+ 351: "\\c{s}",
207
+ 352: "\\v{S}",
208
+ 353: "\\v{s}",
209
+ 354: "\\c{T}",
210
+ 355: "\\c{t}",
211
+ 356: "\\v{T}",
212
+ 357: "\\v{t}",
213
+ 358: "\\={T}",
214
+ 359: "\\={t}",
215
+ 360: "\\~{U}",
216
+ 361: "\\~{u}",
217
+ 362: "\\={U}",
218
+ 363: "\\={u}",
219
+ 364: "\\u{U}",
220
+ 365: "\\u{u}",
221
+ 366: "\\r{U}",
222
+ 367: "\\r{u}",
223
+ 368: "\\'{U}",
224
+ 369: "\\'{u}",
225
+ 370: "\\k{U}",
226
+ 371: "\\k{u}",
227
+ 372: "\\^{W}",
228
+ 373: "\\^{w}",
229
+ 374: "\\^{Y}",
230
+ 375: "\\^{y}",
231
+ 376: "\\\"Y",
232
+ 377: "\\'Z",
233
+ 378: "\\'z",
234
+ 379: "\\.Z",
235
+ 380: "\\.z",
236
+ 381: "\\v{Z}",
237
+ 382: "\\v{z}",
238
+ 402: "\\textflorin",
239
+ 405: "\\texthvlig",
240
+ 414: "\\textnrleg",
241
+ 501: "\\'{g}",
242
+ 552: "\\c{E}",
243
+ 553: "\\c{e}",
244
+ 601: "\\textschwa",
245
+ 603: "\\varepsilon",
246
+ 632: "\\textphi",
247
+ 660: "\\textglotstop",
248
+ 670: "\\textturnk",
249
+ 695: "\\textsuperscript{w}",
250
+ 700: "'",
251
+ 710: "\\textasciicircum",
252
+ 711: "\\textasciicaron",
253
+ 728: "\\textasciibreve",
254
+ 729: "\\textperiodcentered",
255
+ 730: "\\r{}",
256
+ 731: "\\k{}",
257
+ 732: "\\textasciitilde",
258
+ 733: "\\textacutedbl",
259
+ 775: "\\ensuremath{\\dot{}}",
260
+ 776: "\\ensuremath{\\ddot{}}",
261
+ 902: "\\'{}A",
262
+ 904: "\\'{}E",
263
+ 905: "\\'{}H",
264
+ 906: "\\'{}I",
265
+ 908: "\\'{}O",
266
+ 910: "\\'{}Y",
267
+ 911: "\\'{}\\ensuremath{\\Omega}",
268
+ 912: "\\acute{\\ddot{\\iota}}",
269
+ 913: "A",
270
+ 914: "B",
271
+ 915: "\\ensuremath{\\Gamma}",
272
+ 916: "\\ensuremath{\\Delta}",
273
+ 917: "E",
274
+ 918: "Z",
275
+ 919: "H",
276
+ 920: "\\ensuremath{\\Theta}",
277
+ 921: "I",
278
+ 922: "K",
279
+ 923: "\\ensuremath{\\Lambda}",
280
+ 924: "M",
281
+ 925: "N",
282
+ 926: "\\ensuremath{\\Xi}",
283
+ 927: "O",
284
+ 928: "\\ensuremath{\\Pi}",
285
+ 929: "P",
286
+ 931: "\\ensuremath{\\Sigma}",
287
+ 932: "T",
288
+ 933: "\\ensuremath{\\Upsilon}",
289
+ 934: "\\ensuremath{\\Phi}",
290
+ 935: "X",
291
+ 936: "\\ensuremath{\\Psi}",
292
+ 937: "\\ensuremath{\\Omega}",
293
+ 938: "\\ensuremath{\\ddot{I}}",
294
+ 939: "\\ensuremath{\\ddot{Y}}",
295
+ 940: "\\ensuremath{\\acute\\alpha}",
296
+ 941: "\\ensuremath{\\acute\\epsilon}",
297
+ 942: "\\ensuremath{\\acute\\eta}",
298
+ 943: "\\ensuremath{\\acute\\iota}",
299
+ 944: "\\ensuremath{\\acute{\\ddot{\\upsilon}}}",
300
+ 945: "\\ensuremath{\\alpha}",
301
+ 946: "\\ensuremath{\\beta}",
302
+ 947: "\\ensuremath{\\gamma}",
303
+ 948: "\\ensuremath{\\delta}",
304
+ 949: "\\ensuremath{\\varepsilon}",
305
+ 950: "\\ensuremath{\\zeta}",
306
+ 951: "\\ensuremath{\\eta}",
307
+ 952: "\\ensuremath{\\theta}",
308
+ 953: "\\ensuremath{\\iota}",
309
+ 954: "\\ensuremath{\\kappa}",
310
+ 955: "\\ensuremath{\\lambda}",
311
+ 956: "\\ensuremath{\\mu}",
312
+ 957: "\\ensuremath{\\nu}",
313
+ 958: "\\ensuremath{\\xi}",
314
+ 959: "o",
315
+ 960: "\\ensuremath{\\pi}",
316
+ 961: "\\ensuremath{\\rho}",
317
+ 962: "\\ensuremath{\\varsigma}",
318
+ 963: "\\ensuremath{\\sigma}",
319
+ 964: "\\ensuremath{\\tau}",
320
+ 965: "\\ensuremath{\\upsilon}",
321
+ 966: "\\ensuremath{\\varphi}",
322
+ 967: "\\ensuremath{\\chi}",
323
+ 968: "\\ensuremath{\\psi}",
324
+ 969: "\\ensuremath{\\omega}",
325
+ 970: "\\ensuremath{\\ddot\\iota}",
326
+ 971: "\\ensuremath{\\ddot{\\upsilon}}",
327
+ 972: "\\'{o}",
328
+ 973: "\\ensuremath{\\acute\\upsilon}",
329
+ 974: "\\ensuremath{\\acute\\omega}",
330
+ 977: "\\ensuremath{\\vartheta}",
331
+ 978: "\\Upsilon",
332
+ 981: "\\ensuremath{\\phi}",
333
+ 982: "\\ensuremath{\\varpi}",
334
+ 1008: "\\ensuremath{\\varkappa}",
335
+ 1009: "\\ensuremath{\\varrho}",
336
+ 1013: "\\ensuremath{\\epsilon}",
337
+ 1014: "\\ensuremath{\\backepsilon}",
338
+ 1024: "\\`\\CYRE",
339
+ 1025: "\\CYRYO",
340
+ 1026: "\\CYRDJE",
341
+ 1027: "\\`\\CYRG",
342
+ 1028: "\\CYRIE",
343
+ 1029: "\\CYRDZE",
344
+ 1030: "\\CYRII",
345
+ 1031: "\\CYRYI",
346
+ 1032: "\\CYRJE",
347
+ 1033: "\\CYRLJE",
348
+ 1034: "\\CYRNJE",
349
+ 1035: "\\CYRTSHE",
350
+ 1036: "\\`\\CYRK",
351
+ 1037: "\\`\\CYRI",
352
+ 1038: "\\CYRUSHRT",
353
+ 1039: "\\CYRDZHE",
354
+ 1040: "\\CYRA",
355
+ 1041: "\\CYRB",
356
+ 1042: "\\CYRV",
357
+ 1043: "\\CYRG",
358
+ 1044: "\\CYRD",
359
+ 1045: "\\CYRE",
360
+ 1046: "\\CYRZH",
361
+ 1047: "\\CYRZ",
362
+ 1048: "\\CYRI",
363
+ 1049: "\\CYRISHRT",
364
+ 1050: "\\CYRK",
365
+ 1051: "\\CYRL",
366
+ 1052: "\\CYRM",
367
+ 1053: "\\CYRN",
368
+ 1054: "\\CYRO",
369
+ 1055: "\\CYRP",
370
+ 1056: "\\CYRR",
371
+ 1057: "\\CYRS",
372
+ 1058: "\\CYRT",
373
+ 1059: "\\CYRU",
374
+ 1060: "\\CYRF",
375
+ 1061: "\\CYRH",
376
+ 1062: "\\CYRC",
377
+ 1063: "\\CYRCH",
378
+ 1064: "\\CYRSH",
379
+ 1065: "\\CYRSHCH",
380
+ 1066: "\\CYRHRDSN",
381
+ 1067: "\\CYRERY",
382
+ 1068: "\\CYRSFTSN",
383
+ 1069: "\\CYREREV",
384
+ 1070: "\\CYRYU",
385
+ 1071: "\\CYRYA",
386
+ 1072: "\\cyra",
387
+ 1073: "\\cyrb",
388
+ 1074: "\\cyrv",
389
+ 1075: "\\cyrg",
390
+ 1076: "\\cyrd",
391
+ 1077: "\\cyre",
392
+ 1078: "\\cyrzh",
393
+ 1079: "\\cyrz",
394
+ 1080: "\\cyri",
395
+ 1081: "\\cyrishrt",
396
+ 1082: "\\cyrk",
397
+ 1083: "\\cyrl",
398
+ 1084: "\\cyrm",
399
+ 1085: "\\cyrn",
400
+ 1086: "\\cyro",
401
+ 1087: "\\cyrp",
402
+ 1088: "\\cyrr",
403
+ 1089: "\\cyrs",
404
+ 1090: "\\cyrt",
405
+ 1091: "\\cyru",
406
+ 1092: "\\cyrf",
407
+ 1093: "\\cyrh",
408
+ 1094: "\\cyrc",
409
+ 1095: "\\cyrch",
410
+ 1096: "\\cyrsh",
411
+ 1097: "\\cyrshch",
412
+ 1098: "\\cyrhrdsn",
413
+ 1099: "\\cyrery",
414
+ 1100: "\\cyrsftsn",
415
+ 1101: "\\cyrerev",
416
+ 1102: "\\cyryu",
417
+ 1103: "\\cyrya",
418
+ 1104: "\\`\\cyre",
419
+ 1105: "\\cyryo",
420
+ 1106: "\\cyrdje",
421
+ 1107: "\\`\\cyrg",
422
+ 1108: "\\cyrie",
423
+ 1109: "\\cyrdze",
424
+ 1110: "\\cyrii",
425
+ 1111: "\\cyryi",
426
+ 1112: "\\cyrje",
427
+ 1113: "\\cyrlje",
428
+ 1114: "\\cyrnje",
429
+ 1115: "\\cyrtshe",
430
+ 1116: "\\`\\cyrk",
431
+ 1117: "\\`\\cyri",
432
+ 1118: "\\cyrushrt",
433
+ 1119: "\\cyrdzhe",
434
+ 1120: "\\cyrchar\\CYROMEGA",
435
+ 1121: "\\cyrchar\\cyromega",
436
+ 1122: "\\CYRYAT",
437
+ 1123: "\\cyryat",
438
+ 1124: "\\cyrchar\\CYRIOTE",
439
+ 1125: "\\cyrchar\\cyriote",
440
+ 1126: "\\cyrchar\\CYRLYUS",
441
+ 1127: "\\cyrchar\\cyrlyus",
442
+ 1128: "\\cyrchar\\CYRIOTLYUS",
443
+ 1129: "\\cyrchar\\cyriotlyus",
444
+ 1130: "\\CYRBYUS",
445
+ 1131: "\\cyrbyus",
446
+ 1132: "\\cyrchar\\CYRIOTBYUS",
447
+ 1133: "\\cyrchar\\cyriotbyus",
448
+ 1134: "\\cyrchar\\CYRKSI",
449
+ 1135: "\\cyrchar\\cyrksi",
450
+ 1136: "\\cyrchar\\CYRPSI",
451
+ 1137: "\\cyrchar\\cyrpsi",
452
+ 1138: "\\CYRFITA",
453
+ 1139: "\\cyrfita",
454
+ 1140: "\\CYRIZH",
455
+ 1141: "\\cyrizh",
456
+ 1142: "\\C\\CYRIZH",
457
+ 1143: "\\C\\cyrizh",
458
+ 1144: "\\cyrchar\\CYRUK",
459
+ 1145: "\\cyrchar\\cyruk",
460
+ 1146: "\\cyrchar\\CYROMEGARND",
461
+ 1147: "\\cyrchar\\cyromegarnd",
462
+ 1148: "\\cyrchar\\CYROMEGATITLO",
463
+ 1149: "\\cyrchar\\cyromegatitlo",
464
+ 1150: "\\cyrchar\\CYROT",
465
+ 1151: "\\cyrchar\\cyrot",
466
+ 1152: "\\cyrchar\\CYRKOPPA",
467
+ 1153: "\\cyrchar\\cyrkoppa",
468
+ 1154: "\\cyrchar\\cyrthousands",
469
+ 1160: "\\cyrchar\\cyrhundredthousands",
470
+ 1161: "\\cyrchar\\cyrmillions",
471
+ 1164: "\\CYRSEMISFTSN",
472
+ 1165: "\\cyrsemisftsn",
473
+ 1166: "\\CYRRTICK",
474
+ 1167: "\\cyrrtick",
475
+ 1168: "\\CYRGUP",
476
+ 1169: "\\cyrgup",
477
+ 1170: "\\CYRGHCRS",
478
+ 1171: "\\cyrghcrs",
479
+ 1172: "\\CYRGHK",
480
+ 1173: "\\cyrghk",
481
+ 1174: "\\CYRZHDSC",
482
+ 1175: "\\cyrzhdsc",
483
+ 1176: "\\CYRZDSC",
484
+ 1177: "\\cyrzdsc",
485
+ 1178: "\\CYRKDSC",
486
+ 1179: "\\cyrkdsc",
487
+ 1180: "\\CYRKVCRS",
488
+ 1181: "\\cyrkvcrs",
489
+ 1182: "\\CYRKHCRS",
490
+ 1183: "\\cyrkhcrs",
491
+ 1184: "\\CYRKBEAK",
492
+ 1185: "\\cyrkbeak",
493
+ 1186: "\\CYRNDSC",
494
+ 1187: "\\cyrndsc",
495
+ 1188: "\\CYRNG",
496
+ 1189: "\\cyrng",
497
+ 1190: "\\CYRPHK",
498
+ 1191: "\\cyrphk",
499
+ 1192: "\\CYRABHHA",
500
+ 1193: "\\cyrabhha",
501
+ 1194: "\\CYRSDSC",
502
+ 1195: "\\cyrsdsc",
503
+ 1196: "\\CYRTDSC",
504
+ 1197: "\\cyrtdsc",
505
+ 1198: "\\CYRY",
506
+ 1199: "\\cyry",
507
+ 1200: "\\CYRYHCRS",
508
+ 1201: "\\cyryhcrs",
509
+ 1202: "\\CYRHDSC",
510
+ 1203: "\\cyrhdsc",
511
+ 1204: "\\CYRTETSE",
512
+ 1205: "\\cyrtetse",
513
+ 1206: "\\CYRCHRDSC",
514
+ 1207: "\\cyrchrdsc",
515
+ 1208: "\\CYRCHVCRS",
516
+ 1209: "\\cyrchvcrs",
517
+ 1210: "\\CYRSHHA",
518
+ 1211: "\\cyrshha",
519
+ 1212: "\\CYRABHCH",
520
+ 1213: "\\cyrabhch",
521
+ 1214: "\\CYRABHCHDSC",
522
+ 1215: "\\cyrabhchdsc",
523
+ 1216: "\\CYRpalochka",
524
+ 1217: "\\U\\CYRZH",
525
+ 1218: "\\U\\cyrzh",
526
+ 1219: "\\CYRKHK",
527
+ 1220: "\\cyrkhk",
528
+ 1221: "\\CYRLDSC",
529
+ 1222: "\\cyrldsc",
530
+ 1223: "\\CYRNHK",
531
+ 1224: "\\cyrnhk",
532
+ 1227: "\\CYRCHLDSC",
533
+ 1228: "\\cyrchldsc",
534
+ 1229: "\\CYRMDSC",
535
+ 1230: "\\cyrmdsc",
536
+ 1232: "\\U\\CYRA",
537
+ 1233: "\\U\\cyra",
538
+ 1234: "\\\"\\CYRA",
539
+ 1235: "\\\"\\cyra",
540
+ 1236: "\\CYRAE",
541
+ 1237: "\\cyrae",
542
+ 1238: "\\U\\CYRE",
543
+ 1239: "\\U\\cyre",
544
+ 1240: "\\CYRSCHWA",
545
+ 1241: "\\cyrschwa",
546
+ 1242: "\\\"\\CYRSCHWA",
547
+ 1243: "\\\"\\cyrschwa",
548
+ 1244: "\\\"\\CYRZH",
549
+ 1245: "\\\"\\cyrzh",
550
+ 1246: "\\\"\\CYRZ",
551
+ 1247: "\\\"\\cyrz",
552
+ 1248: "\\CYRABHDZE",
553
+ 1249: "\\cyrabhdze",
554
+ 1250: "\\=\\CYRI",
555
+ 1251: "\\=\\cyri",
556
+ 1252: "\\\"\\CYRI",
557
+ 1253: "\\\"\\cyri",
558
+ 1254: "\\\"\\CYRO",
559
+ 1255: "\\\"\\cyro",
560
+ 1256: "\\CYROTLD",
561
+ 1257: "\\cyrotld",
562
+ 1260: "\\\"\\CYREREV",
563
+ 1261: "\\\"\\cyrerev",
564
+ 1262: "\\=\\CYRU",
565
+ 1263: "\\=\\cyru",
566
+ 1264: "\\\"\\CYRU",
567
+ 1265: "\\\"\\cyru",
568
+ 1266: "\\H\\CYRU",
569
+ 1267: "\\H\\cyru",
570
+ 1268: "\\\"\\CYRCH",
571
+ 1269: "\\\"\\cyrch",
572
+ 1270: "\\CYRGDSC",
573
+ 1271: "\\cyrgdsc",
574
+ 1272: "\\\"\\CYRERY",
575
+ 1273: "\\\"\\cyrery",
576
+ 1274: "\\CYRGDSCHCRS",
577
+ 1275: "\\cyrgdschcrs",
578
+ 1276: "\\CYRHHK",
579
+ 1277: "\\cyrhhk",
580
+ 1278: "\\CYRHHCRS",
581
+ 1279: "\\cyrhhcrs",
582
+ 3647: "\\textbaht",
583
+ 8192: "\\enskip",
584
+ 8193: "\\quad",
585
+ 8194: "\\enskip",
586
+ 8195: "\\quad",
587
+ 8196: "\\hspace{0.33em}",
588
+ 8197: "\\hspace{0.25em}",
589
+ 8198: "\\hspace{0.167em}",
590
+ 8199: "~",
591
+ 8200: "\\;",
592
+ 8201: "\\,",
593
+ 8202: "\\hspace{1pt}",
594
+ 8204: "\\textcompwordmark",
595
+ 8208: "-",
596
+ 8209: "\\nobreakdash-",
597
+ 8210: "-",
598
+ 8211: "\\textendash",
599
+ 8212: "\\textemdash",
600
+ 8213: "\\textemdash",
601
+ 8214: "\\ensuremath{\\Vert}",
602
+ 8216: "\\textquoteleft",
603
+ 8217: "\\textquoteright",
604
+ 8218: "\\quotesinglbase",
605
+ 8220: "\\textquotedblleft",
606
+ 8221: "\\textquotedblright",
607
+ 8222: "\\quotedblbase",
608
+ 8224: "\\textdagger",
609
+ 8225: "\\textdaggerdbl",
610
+ 8226: "\\textbullet",
611
+ 8228: ".",
612
+ 8229: "..",
613
+ 8230: "\\textellipsis",
614
+ 8240: "\\textperthousand",
615
+ 8241: "\\textpertenthousand",
616
+ 8242: "'",
617
+ 8243: "''",
618
+ 8244: "'''",
619
+ 8245: "\\ensuremath{\\backprime}",
620
+ 8249: "\\guilsinglleft",
621
+ 8250: "\\guilsinglright",
622
+ 8251: "\\textreferencemark",
623
+ 8253: "\\textinterrobang",
624
+ 8260: "\\textfractionsolidus",
625
+ 8270: "\\textasteriskcentered",
626
+ 8274: "\\textdiscount",
627
+ 8279: "''''",
628
+ 8287: "\\hspace{0.22em}",
629
+ 8288: "\\nolinebreak",
630
+ 8289: "",
631
+ 8353: "\\textcolonmonetary",
632
+ 8356: "\\textlira",
633
+ 8358: "\\textnaira",
634
+ 8361: "\\textwon",
635
+ 8363: "\\textdong",
636
+ 8364: "\\texteuro",
637
+ 8369: "\\textpeso",
638
+ 8450: "\\ensuremath{\\mathbb{C}}",
639
+ 8451: "\\textcelsius",
640
+ 8457: "\\ensuremath{^\\circ}F",
641
+ 8458: "\\ensuremath{g}",
642
+ 8459: "\\ensuremath{\\mathscr{H}}",
643
+ 8460: "\\ensuremath{\\mathfrak{H}}",
644
+ 8461: "\\ensuremath{\\mathbb{H}}",
645
+ 8462: "\\ensuremath{h}",
646
+ 8463: "\\ensuremath{\\hbar}",
647
+ 8464: "\\ensuremath{\\mathscr{I}}",
648
+ 8465: "\\ensuremath{\\mathfrak{I}}",
649
+ 8466: "\\ensuremath{\\mathscr{L}}",
650
+ 8467: "\\ensuremath{\\ell}",
651
+ 8469: "\\ensuremath{\\mathbb{N}}",
652
+ 8470: "\\textnumero",
653
+ 8471: "\\textcircledP",
654
+ 8472: "\\ensuremath{\\wp}",
655
+ 8473: "\\ensuremath{\\mathbb{P}}",
656
+ 8474: "\\ensuremath{\\mathbb{Q}}",
657
+ 8475: "\\ensuremath{\\mathscr{R}}",
658
+ 8476: "\\ensuremath{\\mathfrak{R}}",
659
+ 8477: "\\ensuremath{\\mathbb{R}}",
660
+ 8478: "\\textrecipe",
661
+ 8480: "\\textservicemark",
662
+ 8482: "\\texttrademark",
663
+ 8484: "\\ensuremath{\\mathbb{Z}}",
664
+ 8486: "\\textohm",
665
+ 8487: "\\textmho",
666
+ 8488: "\\ensuremath{\\mathfrak{Z}}",
667
+ 8490: "K",
668
+ 8491: "\\r{A}",
669
+ 8492: "\\ensuremath{\\mathscr{B}}",
670
+ 8493: "\\ensuremath{\\mathfrak{C}}",
671
+ 8494: "\\textestimated",
672
+ 8495: "\\ensuremath{e}",
673
+ 8496: "\\ensuremath{\\mathscr{E}}",
674
+ 8497: "\\ensuremath{\\mathscr{F}}",
675
+ 8499: "\\ensuremath{\\mathscr{M}}",
676
+ 8500: "\\ensuremath{o}",
677
+ 8501: "\\ensuremath{\\aleph}",
678
+ 8502: "\\ensuremath{\\beth}",
679
+ 8503: "\\ensuremath{\\gimel}",
680
+ 8504: "\\ensuremath{\\daleth}",
681
+ 8531: "\\textfrac{1}{3}",
682
+ 8532: "\\textfrac{2}{3}",
683
+ 8533: "\\textfrac{1}{5}",
684
+ 8534: "\\textfrac{2}{5}",
685
+ 8535: "\\textfrac{3}{5}",
686
+ 8536: "\\textfrac{4}{5}",
687
+ 8537: "\\textfrac{1}{6}",
688
+ 8538: "\\textfrac{5}{6}",
689
+ 8539: "\\textfrac{1}{8}",
690
+ 8540: "\\textfrac{3}{8}",
691
+ 8541: "\\textfrac{5}{8}",
692
+ 8542: "\\textfrac{7}{8}",
693
+ 8592: "\\textleftarrow",
694
+ 8593: "\\textuparrow",
695
+ 8594: "\\textrightarrow",
696
+ 8595: "\\textdownarrow",
697
+ 8596: "\\ensuremath{\\leftrightarrow}",
698
+ 8597: "\\ensuremath{\\updownarrow}",
699
+ 8598: "\\ensuremath{\\nwarrow}",
700
+ 8599: "\\ensuremath{\\nearrow}",
701
+ 8600: "\\ensuremath{\\searrow}",
702
+ 8601: "\\ensuremath{\\swarrow}",
703
+ 8602: "\\ensuremath{\\nleftarrow}",
704
+ 8603: "\\ensuremath{\\nrightarrow}",
705
+ 8604: "\\ensuremath{\\arrowwaveleft}",
706
+ 8605: "\\ensuremath{\\arrowwaveright}",
707
+ 8606: "\\ensuremath{\\twoheadleftarrow}",
708
+ 8608: "\\ensuremath{\\twoheadrightarrow}",
709
+ 8610: "\\ensuremath{\\leftarrowtail}",
710
+ 8611: "\\ensuremath{\\rightarrowtail}",
711
+ 8614: "\\ensuremath{\\mapsto}",
712
+ 8617: "\\ensuremath{\\hookleftarrow}",
713
+ 8618: "\\ensuremath{\\hookrightarrow}",
714
+ 8619: "\\ensuremath{\\looparrowleft}",
715
+ 8620: "\\ensuremath{\\looparrowright}",
716
+ 8621: "\\ensuremath{\\leftrightsquigarrow}",
717
+ 8622: "\\ensuremath{\\nleftrightarrow}",
718
+ 8624: "\\ensuremath{\\Lsh}",
719
+ 8625: "\\ensuremath{\\Rsh}",
720
+ 8630: "\\ensuremath{\\curvearrowleft}",
721
+ 8631: "\\ensuremath{\\curvearrowright}",
722
+ 8634: "\\ensuremath{\\circlearrowleft}",
723
+ 8635: "\\ensuremath{\\circlearrowright}",
724
+ 8636: "\\ensuremath{\\leftharpoonup}",
725
+ 8637: "\\ensuremath{\\leftharpoondown}",
726
+ 8638: "\\ensuremath{\\upharpoonright}",
727
+ 8639: "\\ensuremath{\\upharpoonleft}",
728
+ 8640: "\\ensuremath{\\rightharpoonup}",
729
+ 8641: "\\ensuremath{\\rightharpoondown}",
730
+ 8642: "\\ensuremath{\\downharpoonright}",
731
+ 8643: "\\ensuremath{\\downharpoonleft}",
732
+ 8644: "\\ensuremath{\\rightleftarrows}",
733
+ 8645: "\\ensuremath{\\dblarrowupdown}",
734
+ 8646: "\\ensuremath{\\leftrightarrows}",
735
+ 8647: "\\ensuremath{\\leftleftarrows}",
736
+ 8648: "\\ensuremath{\\upuparrows}",
737
+ 8649: "\\ensuremath{\\rightrightarrows}",
738
+ 8650: "\\ensuremath{\\downdownarrows}",
739
+ 8651: "\\ensuremath{\\leftrightharpoons}",
740
+ 8652: "\\ensuremath{\\rightleftharpoons}",
741
+ 8653: "\\ensuremath{\\nLeftarrow}",
742
+ 8654: "\\ensuremath{\\nLeftrightarrow}",
743
+ 8655: "\\ensuremath{\\nRightarrow}",
744
+ 8656: "\\ensuremath{\\Leftarrow}",
745
+ 8657: "\\ensuremath{\\Uparrow}",
746
+ 8658: "\\ensuremath{\\Rightarrow}",
747
+ 8659: "\\ensuremath{\\Downarrow}",
748
+ 8660: "\\ensuremath{\\Leftrightarrow}",
749
+ 8661: "\\ensuremath{\\Updownarrow}",
750
+ 8666: "\\ensuremath{\\Lleftarrow}",
751
+ 8667: "\\ensuremath{\\Rrightarrow}",
752
+ 8669: "\\ensuremath{\\rightsquigarrow}",
753
+ 8693: "\\ensuremath{\\DownArrowUpArrow}",
754
+ 8704: "\\ensuremath{\\forall}",
755
+ 8705: "\\ensuremath{\\complement}",
756
+ 8706: "\\ensuremath{\\partial}",
757
+ 8707: "\\ensuremath{\\exists}",
758
+ 8708: "\\ensuremath{\\nexists}",
759
+ 8709: "\\ensuremath{\\varnothing}",
760
+ 8710: "\\ensuremath{\\Delta}",
761
+ 8711: "\\ensuremath{\\nabla}",
762
+ 8712: "\\ensuremath{\\in}",
763
+ 8713: "\\ensuremath{\\notin}",
764
+ 8714: "\\ensuremath{\\in}",
765
+ 8715: "\\ensuremath{\\ni}",
766
+ 8716: "\\ensuremath{\\not\\ni}",
767
+ 8717: "\\ensuremath{\\ni}",
768
+ 8718: "\\ensuremath{\\blacksquare}",
769
+ 8719: "\\ensuremath{\\prod}",
770
+ 8720: "\\ensuremath{\\coprod}",
771
+ 8721: "\\ensuremath{\\sum}",
772
+ 8722: "\\ensuremath{-}",
773
+ 8723: "\\ensuremath{\\mp}",
774
+ 8724: "\\ensuremath{\\dotplus}",
775
+ 8725: "\\ensuremath{/}",
776
+ 8726: "\\ensuremath{\\smallsetminus}",
777
+ 8727: "\\ensuremath{*}",
778
+ 8728: "\\ensuremath{\\circ}",
779
+ 8729: "\\ensuremath{\\bullet}",
780
+ 8730: "\\ensuremath{\\sqrt{}}",
781
+ 8731: "\\ensuremath{\\sqrt[3]{}}",
782
+ 8732: "\\ensuremath{\\sqrt[4]{}}",
783
+ 8733: "\\ensuremath{\\propto}",
784
+ 8734: "\\ensuremath{\\infty}",
785
+ 8735: "\\ensuremath{\\rightangle}",
786
+ 8736: "\\ensuremath{\\angle}",
787
+ 8737: "\\ensuremath{\\measuredangle}",
788
+ 8738: "\\ensuremath{\\sphericalangle}",
789
+ 8739: "\\ensuremath{\\mid}",
790
+ 8740: "\\ensuremath{\\nmid}",
791
+ 8741: "\\ensuremath{\\parallel}",
792
+ 8742: "\\ensuremath{\\nparallel}",
793
+ 8743: "\\ensuremath{\\wedge}",
794
+ 8744: "\\ensuremath{\\vee}",
795
+ 8745: "\\ensuremath{\\cap}",
796
+ 8746: "\\ensuremath{\\cup}",
797
+ 8747: "\\ensuremath{\\int}",
798
+ 8748: "\\ensuremath{\\iint}",
799
+ 8749: "\\ensuremath{\\iiint}",
800
+ 8750: "\\ensuremath{\\oint}",
801
+ 8751: "\\ensuremath{\\surfintegral}",
802
+ 8752: "\\ensuremath{\\volintegral}",
803
+ 8753: "\\ensuremath{\\clwintegral}",
804
+ 8756: "\\ensuremath{\\therefore}",
805
+ 8757: "\\ensuremath{\\because}",
806
+ 8758: "\\ensuremath{:}",
807
+ 8759: "\\ensuremath{::}",
808
+ 8762: "\\ensuremath{\\mathbin{{:}\\!\\!{-}\\!\\!{:}}}",
809
+ 8763: "\\ensuremath{\\homothetic}",
810
+ 8764: "\\ensuremath{\\sim}",
811
+ 8765: "\\ensuremath{\\backsim}",
812
+ 8766: "\\ensuremath{\\lazysinv}",
813
+ 8768: "\\ensuremath{\\wr}",
814
+ 8769: "\\ensuremath{\\not\\sim}",
815
+ 8771: "\\ensuremath{\\simeq}",
816
+ 8772: "\\ensuremath{\\not\\simeq}",
817
+ 8773: "\\ensuremath{\\cong}",
818
+ 8774: "\\ensuremath{\\approxnotequal}",
819
+ 8775: "\\ensuremath{\\not\\cong}",
820
+ 8776: "\\ensuremath{\\approx}",
821
+ 8777: "\\ensuremath{\\not\\approx}",
822
+ 8778: "\\ensuremath{\\approxeq}",
823
+ 8779: "\\ensuremath{\\tildetrpl}",
824
+ 8780: "\\ensuremath{\\allequal}",
825
+ 8781: "\\ensuremath{\\asymp}",
826
+ 8782: "\\ensuremath{\\Bumpeq}",
827
+ 8783: "\\ensuremath{\\bumpeq}",
828
+ 8784: "\\ensuremath{\\doteq}",
829
+ 8785: "\\ensuremath{\\doteqdot}",
830
+ 8786: "\\ensuremath{\\fallingdotseq}",
831
+ 8787: "\\ensuremath{\\risingdotseq}",
832
+ 8788: "\\ensuremath{:=}",
833
+ 8789: "\\ensuremath{=:}",
834
+ 8790: "\\ensuremath{\\eqcirc}",
835
+ 8791: "\\ensuremath{\\circeq}",
836
+ 8793: "\\ensuremath{\\estimates}",
837
+ 8795: "\\ensuremath{\\starequal}",
838
+ 8796: "\\ensuremath{\\triangleq}",
839
+ 8800: "\\ensuremath{\\neq}",
840
+ 8801: "\\ensuremath{\\equiv}",
841
+ 8802: "\\ensuremath{\\not\\equiv}",
842
+ 8804: "\\ensuremath{\\leq}",
843
+ 8805: "\\ensuremath{\\geq}",
844
+ 8806: "\\ensuremath{\\leqq}",
845
+ 8807: "\\ensuremath{\\geqq}",
846
+ 8808: "\\ensuremath{\\lneqq}",
847
+ 8809: "\\ensuremath{\\gneqq}",
848
+ 8810: "\\ensuremath{\\ll}",
849
+ 8811: "\\ensuremath{\\gg}",
850
+ 8812: "\\ensuremath{\\between}",
851
+ 8813: "\\ensuremath{\\not\\kern-0.3em\\times}",
852
+ 8814: "\\ensuremath{\\nless}",
853
+ 8815: "\\ensuremath{\\ngtr}",
854
+ 8816: "\\ensuremath{\\nleq}",
855
+ 8817: "\\ensuremath{\\ngeq}",
856
+ 8818: "\\ensuremath{\\lesssim}",
857
+ 8819: "\\ensuremath{\\gtrsim}",
858
+ 8820: "\\ensuremath{\\not\\lesssim}",
859
+ 8821: "\\ensuremath{\\not\\gtrsim}",
860
+ 8822: "\\ensuremath{\\lessgtr}",
861
+ 8823: "\\ensuremath{\\gtrless}",
862
+ 8824: "\\ensuremath{\\notlessgreater}",
863
+ 8825: "\\ensuremath{\\notgreaterless}",
864
+ 8826: "\\ensuremath{\\prec}",
865
+ 8827: "\\ensuremath{\\succ}",
866
+ 8828: "\\ensuremath{\\preceq}",
867
+ 8829: "\\ensuremath{\\succeq}",
868
+ 8830: "\\ensuremath{\\precsim}",
869
+ 8831: "\\ensuremath{\\succsim}",
870
+ 8832: "\\ensuremath{\\nprec}",
871
+ 8833: "\\ensuremath{\\nsucc}",
872
+ 8834: "\\ensuremath{\\subset}",
873
+ 8835: "\\ensuremath{\\supset}",
874
+ 8836: "\\ensuremath{\\not\\subset}",
875
+ 8837: "\\ensuremath{\\not\\supset}",
876
+ 8838: "\\ensuremath{\\subseteq}",
877
+ 8839: "\\ensuremath{\\supseteq}",
878
+ 8840: "\\ensuremath{\\nsubseteq}",
879
+ 8841: "\\ensuremath{\\nsupseteq}",
880
+ 8842: "\\ensuremath{\\subsetneq}",
881
+ 8843: "\\ensuremath{\\supsetneq}",
882
+ 8846: "\\ensuremath{\\uplus}",
883
+ 8847: "\\ensuremath{\\sqsubset}",
884
+ 8848: "\\ensuremath{\\sqsupset}",
885
+ 8849: "\\ensuremath{\\sqsubseteq}",
886
+ 8850: "\\ensuremath{\\sqsupseteq}",
887
+ 8851: "\\ensuremath{\\sqcap}",
888
+ 8852: "\\ensuremath{\\sqcup}",
889
+ 8853: "\\ensuremath{\\oplus}",
890
+ 8854: "\\ensuremath{\\ominus}",
891
+ 8855: "\\ensuremath{\\otimes}",
892
+ 8856: "\\ensuremath{\\oslash}",
893
+ 8857: "\\ensuremath{\\odot}",
894
+ 8858: "\\ensuremath{\\circledcirc}",
895
+ 8859: "\\ensuremath{\\circledast}",
896
+ 8861: "\\ensuremath{\\circleddash}",
897
+ 8862: "\\ensuremath{\\boxplus}",
898
+ 8863: "\\ensuremath{\\boxminus}",
899
+ 8864: "\\ensuremath{\\boxtimes}",
900
+ 8865: "\\ensuremath{\\boxdot}",
901
+ 8866: "\\ensuremath{\\vdash}",
902
+ 8867: "\\ensuremath{\\dashv}",
903
+ 8868: "\\ensuremath{\\top}",
904
+ 8869: "\\ensuremath{\\perp}",
905
+ 8871: "\\ensuremath{\\truestate}",
906
+ 8872: "\\ensuremath{\\forcesextra}",
907
+ 8873: "\\ensuremath{\\Vdash}",
908
+ 8874: "\\ensuremath{\\Vvdash}",
909
+ 8875: "\\ensuremath{\\VDash}",
910
+ 8876: "\\ensuremath{\\nvdash}",
911
+ 8877: "\\ensuremath{\\nvDash}",
912
+ 8878: "\\ensuremath{\\nVdash}",
913
+ 8879: "\\ensuremath{\\nVDash}",
914
+ 8882: "\\ensuremath{\\vartriangleleft}",
915
+ 8883: "\\ensuremath{\\vartriangleright}",
916
+ 8884: "\\ensuremath{\\trianglelefteq}",
917
+ 8885: "\\ensuremath{\\trianglerighteq}",
918
+ 8886: "\\ensuremath{\\original}",
919
+ 8887: "\\ensuremath{\\image}",
920
+ 8888: "\\ensuremath{\\multimap}",
921
+ 8889: "\\ensuremath{\\hermitconjmatrix}",
922
+ 8890: "\\ensuremath{\\intercal}",
923
+ 8891: "\\ensuremath{\\veebar}",
924
+ 8894: "\\ensuremath{\\rightanglearc}",
925
+ 8896: "\\ensuremath{\\bigwedge}",
926
+ 8897: "\\ensuremath{\\bigvee}",
927
+ 8898: "\\ensuremath{\\bigcap}",
928
+ 8899: "\\ensuremath{\\bigcup}",
929
+ 8900: "\\ensuremath{\\diamond}",
930
+ 8901: "\\ensuremath{\\cdot}",
931
+ 8902: "\\ensuremath{\\star}",
932
+ 8903: "\\ensuremath{\\divideontimes}",
933
+ 8904: "\\ensuremath{\\bowtie}",
934
+ 8905: "\\ensuremath{\\ltimes}",
935
+ 8906: "\\ensuremath{\\rtimes}",
936
+ 8907: "\\ensuremath{\\leftthreetimes}",
937
+ 8908: "\\ensuremath{\\rightthreetimes}",
938
+ 8909: "\\ensuremath{\\backsimeq}",
939
+ 8910: "\\ensuremath{\\curlyvee}",
940
+ 8911: "\\ensuremath{\\curlywedge}",
941
+ 8912: "\\ensuremath{\\Subset}",
942
+ 8913: "\\ensuremath{\\Supset}",
943
+ 8914: "\\ensuremath{\\Cap}",
944
+ 8915: "\\ensuremath{\\Cup}",
945
+ 8916: "\\ensuremath{\\pitchfork}",
946
+ 8918: "\\ensuremath{\\lessdot}",
947
+ 8919: "\\ensuremath{\\gtrdot}",
948
+ 8920: "\\ensuremath{\\verymuchless}",
949
+ 8921: "\\ensuremath{\\verymuchgreater}",
950
+ 8922: "\\ensuremath{\\lesseqgtr}",
951
+ 8923: "\\ensuremath{\\gtreqless}",
952
+ 8926: "\\ensuremath{\\curlyeqprec}",
953
+ 8927: "\\ensuremath{\\curlyeqsucc}",
954
+ 8930: "\\ensuremath{\\not\\sqsubseteq}",
955
+ 8931: "\\ensuremath{\\not\\sqsupseteq}",
956
+ 8934: "\\ensuremath{\\lnsim}",
957
+ 8935: "\\ensuremath{\\gnsim}",
958
+ 8936: "\\ensuremath{\\precedesnotsimilar}",
959
+ 8937: "\\ensuremath{\\succnsim}",
960
+ 8938: "\\ensuremath{\\ntriangleleft}",
961
+ 8939: "\\ensuremath{\\ntriangleright}",
962
+ 8940: "\\ensuremath{\\ntrianglelefteq}",
963
+ 8941: "\\ensuremath{\\ntrianglerighteq}",
964
+ 8942: "\\ensuremath{\\vdots}",
965
+ 8943: "\\ensuremath{\\cdots}",
966
+ 8944: "\\ensuremath{\\udots}",
967
+ 8945: "\\ensuremath{\\ddots}",
968
+ 8965: "\\ensuremath{\\barwedge}",
969
+ 8966: "\\ensuremath{\\varperspcorrespond}",
970
+ 8968: "\\ensuremath{\\lceil}",
971
+ 8969: "\\ensuremath{\\rceil}",
972
+ 8970: "\\ensuremath{\\lfloor}",
973
+ 8971: "\\ensuremath{\\rfloor}",
974
+ 8981: "\\ensuremath{\\recorder}",
975
+ 8982: "\\ensuremath{\\mathchar\"2208}",
976
+ 8988: "\\ensuremath{\\ulcorner}",
977
+ 8989: "\\ensuremath{\\urcorner}",
978
+ 8990: "\\ensuremath{\\llcorner}",
979
+ 8991: "\\ensuremath{\\lrcorner}",
980
+ 8994: "\\ensuremath{\\frown}",
981
+ 8995: "\\ensuremath{\\smile}",
982
+ 9001: "\\textlangle",
983
+ 9002: "\\textrangle",
984
+ 9136: "\\ensuremath{\\lmoustache}",
985
+ 9137: "\\ensuremath{\\rmoustache}",
986
+ 9250: "\\textblank",
987
+ 9251: "\\textvisiblespace",
988
+ 9632: "\\ensuremath{\\blacksquare}",
989
+ 9633: "\\ensuremath{\\square}",
990
+ 9642: "{\\small\\ensuremath{\\blacksquare}}",
991
+ 9645: "\\fbox{~~}",
992
+ 9651: "\\ensuremath{\\bigtriangleup}",
993
+ 9652: "\\ensuremath{\\blacktriangle}",
994
+ 9653: "\\ensuremath{\\vartriangle}",
995
+ 9656: "\\ensuremath{\\blacktriangleright}",
996
+ 9657: "\\ensuremath{\\triangleright}",
997
+ 9661: "\\ensuremath{\\bigtriangledown}",
998
+ 9662: "\\ensuremath{\\blacktriangledown}",
999
+ 9663: "\\ensuremath{\\triangledown}",
1000
+ 9666: "\\ensuremath{\\blacktriangleleft}",
1001
+ 9667: "\\ensuremath{\\triangleleft}",
1002
+ 9674: "\\ensuremath{\\lozenge}",
1003
+ 9675: "\\ensuremath{\\bigcirc}",
1004
+ 9702: "\\textopenbullet",
1005
+ 9711: "\\textbigcircle",
1006
+ 9826: "\\ensuremath{\\diamond}",
1007
+ 9833: "\\quarternote",
1008
+ 9834: "\\textmusicalnote",
1009
+ 9837: "\\flat",
1010
+ 9838: "\\natural",
1011
+ 9839: "\\sharp",
1012
+ 10216: "\\ensuremath{\\langle}",
1013
+ 10217: "\\ensuremath{\\rangle}",
1014
+ 10229: "\\ensuremath{\\longleftarrow}",
1015
+ 10230: "\\ensuremath{\\longrightarrow}",
1016
+ 10231: "\\ensuremath{\\longleftrightarrow}",
1017
+ 10232: "\\ensuremath{\\Longleftarrow}",
1018
+ 10233: "\\ensuremath{\\Longrightarrow}",
1019
+ 10234: "\\ensuremath{\\Longleftrightarrow}",
1020
+ 10236: "\\ensuremath{\\longmapsto}",
1021
+ 10239: "\\ensuremath{\\sim\\joinrel\\leadsto}",
1022
+ 10643: "\\ensuremath{<\\kern-0.58em(}",
1023
+ 10731: "\\ensuremath{\\blacklozenge}",
1024
+ 10767: "\\ensuremath{\\clockoint}",
1025
+ 10774: "\\ensuremath{\\sqrint}",
1026
+ 10815: "\\ensuremath{\\amalg}",
1027
+ 10862: "\\ensuremath{\\stackrel{*}{=}}",
1028
+ 10869: "==",
1029
+ 10877: "\\ensuremath{\\leqslant}",
1030
+ 10878: "\\ensuremath{\\geqslant}",
1031
+ 10885: "\\ensuremath{\\lessapprox}",
1032
+ 10886: "\\ensuremath{\\gtrapprox}",
1033
+ 10887: "\\ensuremath{\\lneq}",
1034
+ 10888: "\\ensuremath{\\gneq}",
1035
+ 10889: "\\ensuremath{\\lnapprox}",
1036
+ 10890: "\\ensuremath{\\gnapprox}",
1037
+ 10891: "\\ensuremath{\\lesseqqgtr}",
1038
+ 10892: "\\ensuremath{\\gtreqqless}",
1039
+ 10901: "\\ensuremath{\\eqslantless}",
1040
+ 10902: "\\ensuremath{\\eqslantgtr}",
1041
+ 10927: "\\ensuremath{\\preceq}",
1042
+ 10928: "\\ensuremath{\\succeq}",
1043
+ 10933: "\\ensuremath{\\precneqq}",
1044
+ 10934: "\\ensuremath{\\succneqq}",
1045
+ 10935: "\\ensuremath{\\precapprox}",
1046
+ 10936: "\\ensuremath{\\succapprox}",
1047
+ 10937: "\\ensuremath{\\precnapprox}",
1048
+ 10938: "\\ensuremath{\\succnapprox}",
1049
+ 10949: "\\ensuremath{\\subseteqq}",
1050
+ 10950: "\\ensuremath{\\supseteqq}",
1051
+ 10955: "\\ensuremath{\\subsetneqq}",
1052
+ 10956: "\\ensuremath{\\supsetneqq}",
1053
+ 11005: "\\ensuremath{{{/}\\!\\!{/}}}",
1054
+ 12296: "\\ensuremath{\\langle}",
1055
+ 12297: "\\ensuremath{\\rangle}",
1056
+ 64256: "ff",
1057
+ 64257: "fi",
1058
+ 64258: "fl",
1059
+ 64259: "ffi",
1060
+ 64260: "ffl",
1061
+ 119808: "\\ensuremath{\\mathbf{A}}",
1062
+ 119809: "\\ensuremath{\\mathbf{B}}",
1063
+ 119810: "\\ensuremath{\\mathbf{C}}",
1064
+ 119811: "\\ensuremath{\\mathbf{D}}",
1065
+ 119812: "\\ensuremath{\\mathbf{E}}",
1066
+ 119813: "\\ensuremath{\\mathbf{F}}",
1067
+ 119814: "\\ensuremath{\\mathbf{G}}",
1068
+ 119815: "\\ensuremath{\\mathbf{H}}",
1069
+ 119816: "\\ensuremath{\\mathbf{I}}",
1070
+ 119817: "\\ensuremath{\\mathbf{J}}",
1071
+ 119818: "\\ensuremath{\\mathbf{K}}",
1072
+ 119819: "\\ensuremath{\\mathbf{L}}",
1073
+ 119820: "\\ensuremath{\\mathbf{M}}",
1074
+ 119821: "\\ensuremath{\\mathbf{N}}",
1075
+ 119822: "\\ensuremath{\\mathbf{O}}",
1076
+ 119823: "\\ensuremath{\\mathbf{P}}",
1077
+ 119824: "\\ensuremath{\\mathbf{Q}}",
1078
+ 119825: "\\ensuremath{\\mathbf{R}}",
1079
+ 119826: "\\ensuremath{\\mathbf{S}}",
1080
+ 119827: "\\ensuremath{\\mathbf{T}}",
1081
+ 119828: "\\ensuremath{\\mathbf{U}}",
1082
+ 119829: "\\ensuremath{\\mathbf{V}}",
1083
+ 119830: "\\ensuremath{\\mathbf{W}}",
1084
+ 119831: "\\ensuremath{\\mathbf{X}}",
1085
+ 119832: "\\ensuremath{\\mathbf{Y}}",
1086
+ 119833: "\\ensuremath{\\mathbf{Z}}",
1087
+ 119834: "\\ensuremath{\\mathbf{a}}",
1088
+ 119835: "\\ensuremath{\\mathbf{b}}",
1089
+ 119836: "\\ensuremath{\\mathbf{c}}",
1090
+ 119837: "\\ensuremath{\\mathbf{d}}",
1091
+ 119838: "\\ensuremath{\\mathbf{e}}",
1092
+ 119839: "\\ensuremath{\\mathbf{f}}",
1093
+ 119840: "\\ensuremath{\\mathbf{g}}",
1094
+ 119841: "\\ensuremath{\\mathbf{h}}",
1095
+ 119842: "\\ensuremath{\\mathbf{i}}",
1096
+ 119843: "\\ensuremath{\\mathbf{j}}",
1097
+ 119844: "\\ensuremath{\\mathbf{k}}",
1098
+ 119845: "\\ensuremath{\\mathbf{l}}",
1099
+ 119846: "\\ensuremath{\\mathbf{m}}",
1100
+ 119847: "\\ensuremath{\\mathbf{n}}",
1101
+ 119848: "\\ensuremath{\\mathbf{o}}",
1102
+ 119849: "\\ensuremath{\\mathbf{p}}",
1103
+ 119850: "\\ensuremath{\\mathbf{q}}",
1104
+ 119851: "\\ensuremath{\\mathbf{r}}",
1105
+ 119852: "\\ensuremath{\\mathbf{s}}",
1106
+ 119853: "\\ensuremath{\\mathbf{t}}",
1107
+ 119854: "\\ensuremath{\\mathbf{u}}",
1108
+ 119855: "\\ensuremath{\\mathbf{v}}",
1109
+ 119856: "\\ensuremath{\\mathbf{w}}",
1110
+ 119857: "\\ensuremath{\\mathbf{x}}",
1111
+ 119858: "\\ensuremath{\\mathbf{y}}",
1112
+ 119859: "\\ensuremath{\\mathbf{z}}",
1113
+ 119860: "\\ensuremath{\\mathit{A}}",
1114
+ 119861: "\\ensuremath{\\mathit{B}}",
1115
+ 119862: "\\ensuremath{\\mathit{C}}",
1116
+ 119863: "\\ensuremath{\\mathit{D}}",
1117
+ 119864: "\\ensuremath{\\mathit{E}}",
1118
+ 119865: "\\ensuremath{\\mathit{F}}",
1119
+ 119866: "\\ensuremath{\\mathit{G}}",
1120
+ 119867: "\\ensuremath{\\mathit{H}}",
1121
+ 119868: "\\ensuremath{\\mathit{I}}",
1122
+ 119869: "\\ensuremath{\\mathit{J}}",
1123
+ 119870: "\\ensuremath{\\mathit{K}}",
1124
+ 119871: "\\ensuremath{\\mathit{L}}",
1125
+ 119872: "\\ensuremath{\\mathit{M}}",
1126
+ 119873: "\\ensuremath{\\mathit{N}}",
1127
+ 119874: "\\ensuremath{\\mathit{O}}",
1128
+ 119875: "\\ensuremath{\\mathit{P}}",
1129
+ 119876: "\\ensuremath{\\mathit{Q}}",
1130
+ 119877: "\\ensuremath{\\mathit{R}}",
1131
+ 119878: "\\ensuremath{\\mathit{S}}",
1132
+ 119879: "\\ensuremath{\\mathit{T}}",
1133
+ 119880: "\\ensuremath{\\mathit{U}}",
1134
+ 119881: "\\ensuremath{\\mathit{V}}",
1135
+ 119882: "\\ensuremath{\\mathit{W}}",
1136
+ 119883: "\\ensuremath{\\mathit{X}}",
1137
+ 119884: "\\ensuremath{\\mathit{Y}}",
1138
+ 119885: "\\ensuremath{\\mathit{Z}}",
1139
+ 119886: "\\ensuremath{\\mathit{a}}",
1140
+ 119887: "\\ensuremath{\\mathit{b}}",
1141
+ 119888: "\\ensuremath{\\mathit{c}}",
1142
+ 119889: "\\ensuremath{\\mathit{d}}",
1143
+ 119890: "\\ensuremath{\\mathit{e}}",
1144
+ 119891: "\\ensuremath{\\mathit{f}}",
1145
+ 119892: "\\ensuremath{\\mathit{g}}",
1146
+ 119893: "\\ensuremath{\\mathit{h}}",
1147
+ 119894: "\\ensuremath{\\mathit{i}}",
1148
+ 119895: "\\ensuremath{\\mathit{j}}",
1149
+ 119896: "\\ensuremath{\\mathit{k}}",
1150
+ 119897: "\\ensuremath{\\mathit{l}}",
1151
+ 119898: "\\ensuremath{\\mathit{m}}",
1152
+ 119899: "\\ensuremath{\\mathit{n}}",
1153
+ 119900: "\\ensuremath{\\mathit{o}}",
1154
+ 119901: "\\ensuremath{\\mathit{p}}",
1155
+ 119902: "\\ensuremath{\\mathit{q}}",
1156
+ 119903: "\\ensuremath{\\mathit{r}}",
1157
+ 119904: "\\ensuremath{\\mathit{s}}",
1158
+ 119905: "\\ensuremath{\\mathit{t}}",
1159
+ 119906: "\\ensuremath{\\mathit{u}}",
1160
+ 119907: "\\ensuremath{\\mathit{v}}",
1161
+ 119908: "\\ensuremath{\\mathit{w}}",
1162
+ 119909: "\\ensuremath{\\mathit{x}}",
1163
+ 119910: "\\ensuremath{\\mathit{y}}",
1164
+ 119911: "\\ensuremath{\\mathit{z}}",
1165
+ 119912: "\\ensuremath{\\boldsymbol{\\mathit{A}}}",
1166
+ 119913: "\\ensuremath{\\boldsymbol{\\mathit{B}}}",
1167
+ 119914: "\\ensuremath{\\boldsymbol{\\mathit{C}}}",
1168
+ 119915: "\\ensuremath{\\boldsymbol{\\mathit{D}}}",
1169
+ 119916: "\\ensuremath{\\boldsymbol{\\mathit{E}}}",
1170
+ 119917: "\\ensuremath{\\boldsymbol{\\mathit{F}}}",
1171
+ 119918: "\\ensuremath{\\boldsymbol{\\mathit{G}}}",
1172
+ 119919: "\\ensuremath{\\boldsymbol{\\mathit{H}}}",
1173
+ 119920: "\\ensuremath{\\boldsymbol{\\mathit{I}}}",
1174
+ 119921: "\\ensuremath{\\boldsymbol{\\mathit{J}}}",
1175
+ 119922: "\\ensuremath{\\boldsymbol{\\mathit{K}}}",
1176
+ 119923: "\\ensuremath{\\boldsymbol{\\mathit{L}}}",
1177
+ 119924: "\\ensuremath{\\boldsymbol{\\mathit{M}}}",
1178
+ 119925: "\\ensuremath{\\boldsymbol{\\mathit{N}}}",
1179
+ 119926: "\\ensuremath{\\boldsymbol{\\mathit{O}}}",
1180
+ 119927: "\\ensuremath{\\boldsymbol{\\mathit{P}}}",
1181
+ 119928: "\\ensuremath{\\boldsymbol{\\mathit{Q}}}",
1182
+ 119929: "\\ensuremath{\\boldsymbol{\\mathit{R}}}",
1183
+ 119930: "\\ensuremath{\\boldsymbol{\\mathit{S}}}",
1184
+ 119931: "\\ensuremath{\\boldsymbol{\\mathit{T}}}",
1185
+ 119932: "\\ensuremath{\\boldsymbol{\\mathit{U}}}",
1186
+ 119933: "\\ensuremath{\\boldsymbol{\\mathit{V}}}",
1187
+ 119934: "\\ensuremath{\\boldsymbol{\\mathit{W}}}",
1188
+ 119935: "\\ensuremath{\\boldsymbol{\\mathit{X}}}",
1189
+ 119936: "\\ensuremath{\\boldsymbol{\\mathit{Y}}}",
1190
+ 119937: "\\ensuremath{\\boldsymbol{\\mathit{Z}}}",
1191
+ 119938: "\\ensuremath{\\boldsymbol{\\mathit{a}}}",
1192
+ 119939: "\\ensuremath{\\boldsymbol{\\mathit{b}}}",
1193
+ 119940: "\\ensuremath{\\boldsymbol{\\mathit{c}}}",
1194
+ 119941: "\\ensuremath{\\boldsymbol{\\mathit{d}}}",
1195
+ 119942: "\\ensuremath{\\boldsymbol{\\mathit{e}}}",
1196
+ 119943: "\\ensuremath{\\boldsymbol{\\mathit{f}}}",
1197
+ 119944: "\\ensuremath{\\boldsymbol{\\mathit{g}}}",
1198
+ 119945: "\\ensuremath{\\boldsymbol{\\mathit{h}}}",
1199
+ 119946: "\\ensuremath{\\boldsymbol{\\mathit{i}}}",
1200
+ 119947: "\\ensuremath{\\boldsymbol{\\mathit{j}}}",
1201
+ 119948: "\\ensuremath{\\boldsymbol{\\mathit{k}}}",
1202
+ 119949: "\\ensuremath{\\boldsymbol{\\mathit{l}}}",
1203
+ 119950: "\\ensuremath{\\boldsymbol{\\mathit{m}}}",
1204
+ 119951: "\\ensuremath{\\boldsymbol{\\mathit{n}}}",
1205
+ 119952: "\\ensuremath{\\boldsymbol{\\mathit{o}}}",
1206
+ 119953: "\\ensuremath{\\boldsymbol{\\mathit{p}}}",
1207
+ 119954: "\\ensuremath{\\boldsymbol{\\mathit{q}}}",
1208
+ 119955: "\\ensuremath{\\boldsymbol{\\mathit{r}}}",
1209
+ 119956: "\\ensuremath{\\boldsymbol{\\mathit{s}}}",
1210
+ 119957: "\\ensuremath{\\boldsymbol{\\mathit{t}}}",
1211
+ 119958: "\\ensuremath{\\boldsymbol{\\mathit{u}}}",
1212
+ 119959: "\\ensuremath{\\boldsymbol{\\mathit{v}}}",
1213
+ 119960: "\\ensuremath{\\boldsymbol{\\mathit{w}}}",
1214
+ 119961: "\\ensuremath{\\boldsymbol{\\mathit{x}}}",
1215
+ 119962: "\\ensuremath{\\boldsymbol{\\mathit{y}}}",
1216
+ 119963: "\\ensuremath{\\boldsymbol{\\mathit{z}}}",
1217
+ 119964: "\\ensuremath{\\mathscr{A}}",
1218
+ 119965: "\\ensuremath{\\mathscr{B}}",
1219
+ 119966: "\\ensuremath{\\mathscr{C}}",
1220
+ 119967: "\\ensuremath{\\mathscr{D}}",
1221
+ 119968: "\\ensuremath{\\mathscr{E}}",
1222
+ 119969: "\\ensuremath{\\mathscr{F}}",
1223
+ 119970: "\\ensuremath{\\mathscr{G}}",
1224
+ 119971: "\\ensuremath{\\mathscr{H}}",
1225
+ 119972: "\\ensuremath{\\mathscr{I}}",
1226
+ 119973: "\\ensuremath{\\mathscr{J}}",
1227
+ 119974: "\\ensuremath{\\mathscr{K}}",
1228
+ 119975: "\\ensuremath{\\mathscr{L}}",
1229
+ 119976: "\\ensuremath{\\mathscr{M}}",
1230
+ 119977: "\\ensuremath{\\mathscr{N}}",
1231
+ 119978: "\\ensuremath{\\mathscr{O}}",
1232
+ 119979: "\\ensuremath{\\mathscr{P}}",
1233
+ 119980: "\\ensuremath{\\mathscr{Q}}",
1234
+ 119981: "\\ensuremath{\\mathscr{R}}",
1235
+ 119982: "\\ensuremath{\\mathscr{S}}",
1236
+ 119983: "\\ensuremath{\\mathscr{T}}",
1237
+ 119984: "\\ensuremath{\\mathscr{U}}",
1238
+ 119985: "\\ensuremath{\\mathscr{V}}",
1239
+ 119986: "\\ensuremath{\\mathscr{W}}",
1240
+ 119987: "\\ensuremath{\\mathscr{X}}",
1241
+ 119988: "\\ensuremath{\\mathscr{Y}}",
1242
+ 119989: "\\ensuremath{\\mathscr{Z}}",
1243
+ 119990: "\\ensuremath{\\mathscr{a}}",
1244
+ 119991: "\\ensuremath{\\mathscr{b}}",
1245
+ 119992: "\\ensuremath{\\mathscr{c}}",
1246
+ 119993: "\\ensuremath{\\mathscr{d}}",
1247
+ 119995: "\\ensuremath{\\mathscr{f}}",
1248
+ 119997: "\\ensuremath{\\mathscr{h}}",
1249
+ 119998: "\\ensuremath{\\mathscr{i}}",
1250
+ 119999: "\\ensuremath{\\mathscr{j}}",
1251
+ 120000: "\\ensuremath{\\mathscr{k}}",
1252
+ 120001: "\\ensuremath{\\mathscr{l}}",
1253
+ 120002: "\\ensuremath{\\mathscr{m}}",
1254
+ 120003: "\\ensuremath{\\mathscr{n}}",
1255
+ 120005: "\\ensuremath{\\mathscr{p}}",
1256
+ 120006: "\\ensuremath{\\mathscr{q}}",
1257
+ 120007: "\\ensuremath{\\mathscr{r}}",
1258
+ 120008: "\\ensuremath{\\mathscr{s}}",
1259
+ 120009: "\\ensuremath{\\mathscr{t}}",
1260
+ 120010: "\\ensuremath{\\mathscr{u}}",
1261
+ 120011: "\\ensuremath{\\mathscr{v}}",
1262
+ 120012: "\\ensuremath{\\mathscr{w}}",
1263
+ 120013: "\\ensuremath{\\mathscr{x}}",
1264
+ 120014: "\\ensuremath{\\mathscr{y}}",
1265
+ 120015: "\\ensuremath{\\mathscr{z}}",
1266
+ 120068: "\\ensuremath{\\mathfrak{A}}",
1267
+ 120069: "\\ensuremath{\\mathfrak{B}}",
1268
+ 120070: "\\ensuremath{\\mathfrak{C}}",
1269
+ 120071: "\\ensuremath{\\mathfrak{D}}",
1270
+ 120072: "\\ensuremath{\\mathfrak{E}}",
1271
+ 120073: "\\ensuremath{\\mathfrak{F}}",
1272
+ 120074: "\\ensuremath{\\mathfrak{G}}",
1273
+ 120075: "\\ensuremath{\\mathfrak{H}}",
1274
+ 120076: "\\ensuremath{\\mathfrak{I}}",
1275
+ 120077: "\\ensuremath{\\mathfrak{J}}",
1276
+ 120078: "\\ensuremath{\\mathfrak{K}}",
1277
+ 120079: "\\ensuremath{\\mathfrak{L}}",
1278
+ 120080: "\\ensuremath{\\mathfrak{M}}",
1279
+ 120081: "\\ensuremath{\\mathfrak{N}}",
1280
+ 120082: "\\ensuremath{\\mathfrak{O}}",
1281
+ 120083: "\\ensuremath{\\mathfrak{P}}",
1282
+ 120084: "\\ensuremath{\\mathfrak{Q}}",
1283
+ 120085: "\\ensuremath{\\mathfrak{R}}",
1284
+ 120086: "\\ensuremath{\\mathfrak{S}}",
1285
+ 120087: "\\ensuremath{\\mathfrak{T}}",
1286
+ 120088: "\\ensuremath{\\mathfrak{U}}",
1287
+ 120089: "\\ensuremath{\\mathfrak{V}}",
1288
+ 120090: "\\ensuremath{\\mathfrak{W}}",
1289
+ 120091: "\\ensuremath{\\mathfrak{X}}",
1290
+ 120092: "\\ensuremath{\\mathfrak{Y}}",
1291
+ 120093: "\\ensuremath{\\mathfrak{Z}}",
1292
+ 120094: "\\ensuremath{\\mathfrak{a}}",
1293
+ 120095: "\\ensuremath{\\mathfrak{b}}",
1294
+ 120096: "\\ensuremath{\\mathfrak{c}}",
1295
+ 120097: "\\ensuremath{\\mathfrak{d}}",
1296
+ 120098: "\\ensuremath{\\mathfrak{e}}",
1297
+ 120099: "\\ensuremath{\\mathfrak{f}}",
1298
+ 120100: "\\ensuremath{\\mathfrak{g}}",
1299
+ 120101: "\\ensuremath{\\mathfrak{h}}",
1300
+ 120102: "\\ensuremath{\\mathfrak{i}}",
1301
+ 120103: "\\ensuremath{\\mathfrak{j}}",
1302
+ 120104: "\\ensuremath{\\mathfrak{k}}",
1303
+ 120105: "\\ensuremath{\\mathfrak{l}}",
1304
+ 120106: "\\ensuremath{\\mathfrak{m}}",
1305
+ 120107: "\\ensuremath{\\mathfrak{n}}",
1306
+ 120108: "\\ensuremath{\\mathfrak{o}}",
1307
+ 120109: "\\ensuremath{\\mathfrak{p}}",
1308
+ 120110: "\\ensuremath{\\mathfrak{q}}",
1309
+ 120111: "\\ensuremath{\\mathfrak{r}}",
1310
+ 120112: "\\ensuremath{\\mathfrak{s}}",
1311
+ 120113: "\\ensuremath{\\mathfrak{t}}",
1312
+ 120114: "\\ensuremath{\\mathfrak{u}}",
1313
+ 120115: "\\ensuremath{\\mathfrak{v}}",
1314
+ 120116: "\\ensuremath{\\mathfrak{w}}",
1315
+ 120117: "\\ensuremath{\\mathfrak{x}}",
1316
+ 120118: "\\ensuremath{\\mathfrak{y}}",
1317
+ 120119: "\\ensuremath{\\mathfrak{z}}",
1318
+ 120120: "\\ensuremath{\\mathbb{A}}",
1319
+ 120121: "\\ensuremath{\\mathbb{B}}",
1320
+ 120122: "\\ensuremath{\\mathbb{C}}",
1321
+ 120123: "\\ensuremath{\\mathbb{D}}",
1322
+ 120124: "\\ensuremath{\\mathbb{E}}",
1323
+ 120125: "\\ensuremath{\\mathbb{F}}",
1324
+ 120126: "\\ensuremath{\\mathbb{G}}",
1325
+ 120127: "\\ensuremath{\\mathbb{H}}",
1326
+ 120128: "\\ensuremath{\\mathbb{I}}",
1327
+ 120129: "\\ensuremath{\\mathbb{J}}",
1328
+ 120130: "\\ensuremath{\\mathbb{K}}",
1329
+ 120131: "\\ensuremath{\\mathbb{L}}",
1330
+ 120132: "\\ensuremath{\\mathbb{M}}",
1331
+ 120133: "\\ensuremath{\\mathbb{N}}",
1332
+ 120134: "\\ensuremath{\\mathbb{O}}",
1333
+ 120135: "\\ensuremath{\\mathbb{P}}",
1334
+ 120136: "\\ensuremath{\\mathbb{Q}}",
1335
+ 120137: "\\ensuremath{\\mathbb{R}}",
1336
+ 120138: "\\ensuremath{\\mathbb{S}}",
1337
+ 120139: "\\ensuremath{\\mathbb{T}}",
1338
+ 120140: "\\ensuremath{\\mathbb{U}}",
1339
+ 120141: "\\ensuremath{\\mathbb{V}}",
1340
+ 120142: "\\ensuremath{\\mathbb{W}}",
1341
+ 120143: "\\ensuremath{\\mathbb{X}}",
1342
+ 120144: "\\ensuremath{\\mathbb{Y}}",
1343
+ 120145: "\\ensuremath{\\mathbb{Z}}",
1344
+ 120146: "\\ensuremath{\\mathbb{a}}",
1345
+ 120147: "\\ensuremath{\\mathbb{b}}",
1346
+ 120148: "\\ensuremath{\\mathbb{c}}",
1347
+ 120149: "\\ensuremath{\\mathbb{d}}",
1348
+ 120150: "\\ensuremath{\\mathbb{e}}",
1349
+ 120151: "\\ensuremath{\\mathbb{f}}",
1350
+ 120152: "\\ensuremath{\\mathbb{g}}",
1351
+ 120153: "\\ensuremath{\\mathbb{h}}",
1352
+ 120154: "\\ensuremath{\\mathbb{i}}",
1353
+ 120155: "\\ensuremath{\\mathbb{j}}",
1354
+ 120156: "\\ensuremath{\\mathbb{k}}",
1355
+ 120157: "\\ensuremath{\\mathbb{l}}",
1356
+ 120158: "\\ensuremath{\\mathbb{m}}",
1357
+ 120159: "\\ensuremath{\\mathbb{n}}",
1358
+ 120160: "\\ensuremath{\\mathbb{o}}",
1359
+ 120161: "\\ensuremath{\\mathbb{p}}",
1360
+ 120162: "\\ensuremath{\\mathbb{q}}",
1361
+ 120163: "\\ensuremath{\\mathbb{r}}",
1362
+ 120164: "\\ensuremath{\\mathbb{s}}",
1363
+ 120165: "\\ensuremath{\\mathbb{t}}",
1364
+ 120166: "\\ensuremath{\\mathbb{u}}",
1365
+ 120167: "\\ensuremath{\\mathbb{v}}",
1366
+ 120168: "\\ensuremath{\\mathbb{w}}",
1367
+ 120169: "\\ensuremath{\\mathbb{x}}",
1368
+ 120170: "\\ensuremath{\\mathbb{y}}",
1369
+ 120171: "\\ensuremath{\\mathbb{z}}",
1370
+ 120224: "\\ensuremath{\\mathsf{A}}",
1371
+ 120225: "\\ensuremath{\\mathsf{B}}",
1372
+ 120226: "\\ensuremath{\\mathsf{C}}",
1373
+ 120227: "\\ensuremath{\\mathsf{D}}",
1374
+ 120228: "\\ensuremath{\\mathsf{E}}",
1375
+ 120229: "\\ensuremath{\\mathsf{F}}",
1376
+ 120230: "\\ensuremath{\\mathsf{G}}",
1377
+ 120231: "\\ensuremath{\\mathsf{H}}",
1378
+ 120232: "\\ensuremath{\\mathsf{I}}",
1379
+ 120233: "\\ensuremath{\\mathsf{J}}",
1380
+ 120234: "\\ensuremath{\\mathsf{K}}",
1381
+ 120235: "\\ensuremath{\\mathsf{L}}",
1382
+ 120236: "\\ensuremath{\\mathsf{M}}",
1383
+ 120237: "\\ensuremath{\\mathsf{N}}",
1384
+ 120238: "\\ensuremath{\\mathsf{O}}",
1385
+ 120239: "\\ensuremath{\\mathsf{P}}",
1386
+ 120240: "\\ensuremath{\\mathsf{Q}}",
1387
+ 120241: "\\ensuremath{\\mathsf{R}}",
1388
+ 120242: "\\ensuremath{\\mathsf{S}}",
1389
+ 120243: "\\ensuremath{\\mathsf{T}}",
1390
+ 120244: "\\ensuremath{\\mathsf{U}}",
1391
+ 120245: "\\ensuremath{\\mathsf{V}}",
1392
+ 120246: "\\ensuremath{\\mathsf{W}}",
1393
+ 120247: "\\ensuremath{\\mathsf{X}}",
1394
+ 120248: "\\ensuremath{\\mathsf{Y}}",
1395
+ 120249: "\\ensuremath{\\mathsf{Z}}",
1396
+ 120250: "\\ensuremath{\\mathsf{a}}",
1397
+ 120251: "\\ensuremath{\\mathsf{b}}",
1398
+ 120252: "\\ensuremath{\\mathsf{c}}",
1399
+ 120253: "\\ensuremath{\\mathsf{d}}",
1400
+ 120254: "\\ensuremath{\\mathsf{e}}",
1401
+ 120255: "\\ensuremath{\\mathsf{f}}",
1402
+ 120256: "\\ensuremath{\\mathsf{g}}",
1403
+ 120257: "\\ensuremath{\\mathsf{h}}",
1404
+ 120258: "\\ensuremath{\\mathsf{i}}",
1405
+ 120259: "\\ensuremath{\\mathsf{j}}",
1406
+ 120260: "\\ensuremath{\\mathsf{k}}",
1407
+ 120261: "\\ensuremath{\\mathsf{l}}",
1408
+ 120262: "\\ensuremath{\\mathsf{m}}",
1409
+ 120263: "\\ensuremath{\\mathsf{n}}",
1410
+ 120264: "\\ensuremath{\\mathsf{o}}",
1411
+ 120265: "\\ensuremath{\\mathsf{p}}",
1412
+ 120266: "\\ensuremath{\\mathsf{q}}",
1413
+ 120267: "\\ensuremath{\\mathsf{r}}",
1414
+ 120268: "\\ensuremath{\\mathsf{s}}",
1415
+ 120269: "\\ensuremath{\\mathsf{t}}",
1416
+ 120270: "\\ensuremath{\\mathsf{u}}",
1417
+ 120271: "\\ensuremath{\\mathsf{v}}",
1418
+ 120272: "\\ensuremath{\\mathsf{w}}",
1419
+ 120273: "\\ensuremath{\\mathsf{x}}",
1420
+ 120274: "\\ensuremath{\\mathsf{y}}",
1421
+ 120275: "\\ensuremath{\\mathsf{z}}",
1422
+ 120432: "\\ensuremath{\\mathtt{A}}",
1423
+ 120433: "\\ensuremath{\\mathtt{B}}",
1424
+ 120434: "\\ensuremath{\\mathtt{C}}",
1425
+ 120435: "\\ensuremath{\\mathtt{D}}",
1426
+ 120436: "\\ensuremath{\\mathtt{E}}",
1427
+ 120437: "\\ensuremath{\\mathtt{F}}",
1428
+ 120438: "\\ensuremath{\\mathtt{G}}",
1429
+ 120439: "\\ensuremath{\\mathtt{H}}",
1430
+ 120440: "\\ensuremath{\\mathtt{I}}",
1431
+ 120441: "\\ensuremath{\\mathtt{J}}",
1432
+ 120442: "\\ensuremath{\\mathtt{K}}",
1433
+ 120443: "\\ensuremath{\\mathtt{L}}",
1434
+ 120444: "\\ensuremath{\\mathtt{M}}",
1435
+ 120445: "\\ensuremath{\\mathtt{N}}",
1436
+ 120446: "\\ensuremath{\\mathtt{O}}",
1437
+ 120447: "\\ensuremath{\\mathtt{P}}",
1438
+ 120448: "\\ensuremath{\\mathtt{Q}}",
1439
+ 120449: "\\ensuremath{\\mathtt{R}}",
1440
+ 120450: "\\ensuremath{\\mathtt{S}}",
1441
+ 120451: "\\ensuremath{\\mathtt{T}}",
1442
+ 120452: "\\ensuremath{\\mathtt{U}}",
1443
+ 120453: "\\ensuremath{\\mathtt{V}}",
1444
+ 120454: "\\ensuremath{\\mathtt{W}}",
1445
+ 120455: "\\ensuremath{\\mathtt{X}}",
1446
+ 120456: "\\ensuremath{\\mathtt{Y}}",
1447
+ 120457: "\\ensuremath{\\mathtt{Z}}",
1448
+ 120458: "\\ensuremath{\\mathtt{a}}",
1449
+ 120459: "\\ensuremath{\\mathtt{b}}",
1450
+ 120460: "\\ensuremath{\\mathtt{c}}",
1451
+ 120461: "\\ensuremath{\\mathtt{d}}",
1452
+ 120462: "\\ensuremath{\\mathtt{e}}",
1453
+ 120463: "\\ensuremath{\\mathtt{f}}",
1454
+ 120464: "\\ensuremath{\\mathtt{g}}",
1455
+ 120465: "\\ensuremath{\\mathtt{h}}",
1456
+ 120466: "\\ensuremath{\\mathtt{i}}",
1457
+ 120467: "\\ensuremath{\\mathtt{j}}",
1458
+ 120468: "\\ensuremath{\\mathtt{k}}",
1459
+ 120469: "\\ensuremath{\\mathtt{l}}",
1460
+ 120470: "\\ensuremath{\\mathtt{m}}",
1461
+ 120471: "\\ensuremath{\\mathtt{n}}",
1462
+ 120472: "\\ensuremath{\\mathtt{o}}",
1463
+ 120473: "\\ensuremath{\\mathtt{p}}",
1464
+ 120474: "\\ensuremath{\\mathtt{q}}",
1465
+ 120475: "\\ensuremath{\\mathtt{r}}",
1466
+ 120476: "\\ensuremath{\\mathtt{s}}",
1467
+ 120477: "\\ensuremath{\\mathtt{t}}",
1468
+ 120478: "\\ensuremath{\\mathtt{u}}",
1469
+ 120479: "\\ensuremath{\\mathtt{v}}",
1470
+ 120480: "\\ensuremath{\\mathtt{w}}",
1471
+ 120481: "\\ensuremath{\\mathtt{x}}",
1472
+ 120482: "\\ensuremath{\\mathtt{y}}",
1473
+ 120483: "\\ensuremath{\\mathtt{z}}",
1474
+ 120782: "\\ensuremath{\\mathbf{0}}",
1475
+ 120783: "\\ensuremath{\\mathbf{1}}",
1476
+ 120784: "\\ensuremath{\\mathbf{2}}",
1477
+ 120785: "\\ensuremath{\\mathbf{3}}",
1478
+ 120786: "\\ensuremath{\\mathbf{4}}",
1479
+ 120787: "\\ensuremath{\\mathbf{5}}",
1480
+ 120788: "\\ensuremath{\\mathbf{6}}",
1481
+ 120789: "\\ensuremath{\\mathbf{7}}",
1482
+ 120790: "\\ensuremath{\\mathbf{8}}",
1483
+ 120791: "\\ensuremath{\\mathbf{9}}",
1484
+ 120792: "\\ensuremath{\\mathbb{0}}",
1485
+ 120793: "\\ensuremath{\\mathbb{1}}",
1486
+ 120794: "\\ensuremath{\\mathbb{2}}",
1487
+ 120795: "\\ensuremath{\\mathbb{3}}",
1488
+ 120796: "\\ensuremath{\\mathbb{4}}",
1489
+ 120797: "\\ensuremath{\\mathbb{5}}",
1490
+ 120798: "\\ensuremath{\\mathbb{6}}",
1491
+ 120799: "\\ensuremath{\\mathbb{7}}",
1492
+ 120800: "\\ensuremath{\\mathbb{8}}",
1493
+ 120801: "\\ensuremath{\\mathbb{9}}",
1494
+ 120802: "\\ensuremath{\\mathsf{0}}",
1495
+ 120803: "\\ensuremath{\\mathsf{1}}",
1496
+ 120804: "\\ensuremath{\\mathsf{2}}",
1497
+ 120805: "\\ensuremath{\\mathsf{3}}",
1498
+ 120806: "\\ensuremath{\\mathsf{4}}",
1499
+ 120807: "\\ensuremath{\\mathsf{5}}",
1500
+ 120808: "\\ensuremath{\\mathsf{6}}",
1501
+ 120809: "\\ensuremath{\\mathsf{7}}",
1502
+ 120810: "\\ensuremath{\\mathsf{8}}",
1503
+ 120811: "\\ensuremath{\\mathsf{9}}",
1504
+ 120822: "\\ensuremath{\\mathtt{0}}",
1505
+ 120823: "\\ensuremath{\\mathtt{1}}",
1506
+ 120824: "\\ensuremath{\\mathtt{2}}",
1507
+ 120825: "\\ensuremath{\\mathtt{3}}",
1508
+ 120826: "\\ensuremath{\\mathtt{4}}",
1509
+ 120827: "\\ensuremath{\\mathtt{5}}",
1510
+ 120828: "\\ensuremath{\\mathtt{6}}",
1511
+ 120829: "\\ensuremath{\\mathtt{7}}",
1512
+ 120830: "\\ensuremath{\\mathtt{8}}",
1513
+ 120831: "\\ensuremath{\\mathtt{9}}"
1514
+ };
1515
+ function unicodeToLatex(input) {
1516
+ const s = String(input).normalize('NFC');
1517
+ let out = '';
1518
+ for (const ch of s){
1519
+ const cp = ch.codePointAt(0);
1520
+ const repl = UNI2LATEX[cp];
1521
+ if (void 0 !== repl) out += '{' + repl + '}';
1522
+ else out += ch;
1523
+ }
1524
+ return out;
1525
+ }
1526
+ const CHARS = [
1527
+ '{',
1528
+ '}',
1529
+ '_',
1530
+ '^',
1531
+ '#',
1532
+ '&',
1533
+ '$',
1534
+ '%',
1535
+ '~'
1536
+ ];
1537
+ const CHR = {
1538
+ '̀': '\\grave{{{0}}}',
1539
+ '́': '\\acute{{{0}}}',
1540
+ '̂': '\\hat{{{0}}}',
1541
+ '̃': '\\tilde{{{0}}}',
1542
+ '̄': '\\bar{{{0}}}',
1543
+ '̅': '\\overbar{{{0}}}',
1544
+ '̆': '\\breve{{{0}}}',
1545
+ '̇': '\\dot{{{0}}}',
1546
+ '̈': '\\ddot{{{0}}}',
1547
+ '̉': '\\ovhook{{{0}}}',
1548
+ '̊': '\\ocirc{{{0}}}}',
1549
+ '̌': '\\check{{{0}}}}',
1550
+ '̐': '\\candra{{{0}}}',
1551
+ '̒': '\\oturnedcomma{{{0}}}',
1552
+ '̕': '\\ocommatopright{{{0}}}',
1553
+ '̚': '\\droang{{{0}}}',
1554
+ '̸': '\\not{{{0}}}',
1555
+ '⃝': '\\enclosecircle{{{0}}}',
1556
+ '⃞': '\\enclosesquare{{{0}}}',
1557
+ '⃟': '\\enclosediamond{{{0}}}',
1558
+ '⃤': '\\enclosetriangle{{{0}}}',
1559
+ '⃐': '\\leftharpoonup{{{0}}}',
1560
+ '⃑': '\\rightharpoonup{{{0}}}',
1561
+ '⃒': '\\vertoverlay{{{0}}}',
1562
+ '⃖': '\\LVec{{{0}}}',
1563
+ '⃗': '\\vec{{{0}}}',
1564
+ '⃛': '\\dddot{{{0}}}',
1565
+ '⃜': '\\ddddot{{{0}}}',
1566
+ '⃡': '\\overleftrightarrow{{{0}}}',
1567
+ '⃧': '\\annuity{{{0}}}',
1568
+ '⃩': '\\widebridgeabove{{{0}}}',
1569
+ '⃰': '\\asteraccent{{{0}}}',
1570
+ '̰': '\\wideutilde{{{0}}}',
1571
+ '̱': '\\underbar{{{0}}}',
1572
+ '⃨': '\\threeunderdot{{{0}}}',
1573
+ '⃬': '\\underrightharpoondown{{{0}}}',
1574
+ '⃭': '\\underleftharpoondown{{{0}}}',
1575
+ '⃮': '\\underleftarrow{{{0}}}',
1576
+ '⃯': '\\underrightarrow{{{0}}}',
1577
+ '⎴': '\\overbracket{{{0}}}',
1578
+ '⏜': '\\overparen{{{0}}}',
1579
+ '⏞': '\\overbrace{{{0}}}',
1580
+ '⎵': '\\underbracket{{{0}}}',
1581
+ '⏝': '\\underparen{{{0}}}',
1582
+ '⏟': '\\underbrace{{{0}}}'
1583
+ };
1584
+ const CHR_BO = {
1585
+ '⅀': '\\Bbbsum',
1586
+ '∏': '\\prod',
1587
+ '∐': '\\coprod',
1588
+ '∑': '\\sum',
1589
+ '∫': '\\int',
1590
+ '∬': '\\iint',
1591
+ '∭': '\\iiint',
1592
+ '⨌': '\\iiiint',
1593
+ '∮': '\\oint',
1594
+ '∯': '\\oiint',
1595
+ '∰': '\\oiiint',
1596
+ '⨍': '\\fint',
1597
+ '⨖': '\\sqint',
1598
+ '⋀': '\\bigwedge',
1599
+ '⋁': '\\bigvee',
1600
+ '⋂': '\\bigcap',
1601
+ '⋃': '\\bigcup',
1602
+ '⨀': '\\bigodot',
1603
+ '⨁': '\\bigoplus',
1604
+ '⨂': '\\bigotimes',
1605
+ '⨄': '\\biguplus',
1606
+ '⨅': '\\bigsqcap',
1607
+ '⨆': '\\bigsqcup',
1608
+ '⨉': '\\varprod'
1609
+ };
1610
+ const T = {
1611
+ '→': '\\rightarrow ',
1612
+ 𝛼: '\\alpha ',
1613
+ 𝛽: '\\beta ',
1614
+ 𝛾: '\\gamma ',
1615
+ 𝛿: '\\delta ',
1616
+ 𝜀: '\\epsilon ',
1617
+ 𝜁: '\\zeta ',
1618
+ 𝜂: '\\eta ',
1619
+ 𝜃: '\\theta ',
1620
+ 𝜄: '\\iota ',
1621
+ 𝜅: '\\kappa ',
1622
+ 𝜆: '\\lambda ',
1623
+ 𝜇: '\\mu ',
1624
+ 𝜈: '\\nu ',
1625
+ 𝜉: '\\xi ',
1626
+ 𝜊: '\\omicron ',
1627
+ 𝜋: '\\pi ',
1628
+ 𝜌: '\\rho ',
1629
+ 𝜍: '\\varsigma ',
1630
+ 𝜎: '\\sigma ',
1631
+ 𝜏: '\\tau ',
1632
+ 𝜐: '\\upsilon ',
1633
+ 𝜑: '\\phi ',
1634
+ 𝜒: '\\chi ',
1635
+ 𝜓: '\\psi ',
1636
+ 𝜔: '\\omega ',
1637
+ '𝜕': '\\partial ',
1638
+ 𝜖: '\\varepsilon ',
1639
+ 𝜗: '\\vartheta ',
1640
+ 𝜘: '\\varkappa ',
1641
+ 𝜙: '\\varphi ',
1642
+ 𝜚: '\\varrho ',
1643
+ 𝜛: '\\varpi ',
1644
+ '←': '\\leftarrow ',
1645
+ '↑': '\\uparrow ',
1646
+ '↓': '\\downarrow ',
1647
+ '↔': '\\leftrightarrow ',
1648
+ '↕': '\\updownarrow ',
1649
+ '↖': '\\nwarrow ',
1650
+ '↗': '\\nearrow ',
1651
+ '↘': '\\searrow ',
1652
+ '↙': '\\swarrow ',
1653
+ '⋮': '\\vdots ',
1654
+ '⋯': '\\cdots ',
1655
+ '⋰': '\\adots ',
1656
+ '⋱': '\\ddots ',
1657
+ '⇐': '\\Leftarrow ',
1658
+ '⇒': '\\Rightarrow ',
1659
+ '⇔': '\\Leftrightarrow ',
1660
+ '⇑': '\\Uparrow ',
1661
+ '⇓': '\\Downarrow ',
1662
+ '⇕': '\\Updownarrow ',
1663
+ '↦': '\\mapsto ',
1664
+ '⟨': '\\langle ',
1665
+ '⟩': '\\rangle ',
1666
+ '⌈': '\\lceil ',
1667
+ '⌉': '\\rceil ',
1668
+ '⌊': '\\lfloor ',
1669
+ '⌋': '\\rfloor ',
1670
+ '‖': '\\Vert ',
1671
+ '∥': '\\parallel ',
1672
+ '≠': '\\ne ',
1673
+ '≤': '\\leq ',
1674
+ '≥': '\\geq ',
1675
+ '≦': '\\leqq ',
1676
+ '≧': '\\geqq ',
1677
+ '≨': '\\lneqq ',
1678
+ '≩': '\\gneqq ',
1679
+ '≪': '\\ll ',
1680
+ '≫': '\\gg ',
1681
+ '∈': '\\in ',
1682
+ '∉': '\\notin ',
1683
+ '∋': '\\ni ',
1684
+ '∌': '\\nni ',
1685
+ '∞': '\\infty ',
1686
+ '±': '\\pm ',
1687
+ '∓': '\\mp ',
1688
+ '·': '\\cdot ',
1689
+ '⋅': '\\cdot ',
1690
+ '×': '\\times ',
1691
+ '÷': '\\div ',
1692
+ '∗': '\\ast ',
1693
+ '∘': '\\circ ',
1694
+ '∙': '\\bullet ',
1695
+ '−': '-',
1696
+ '<': '<',
1697
+ '>': '>',
1698
+ '=': '=',
1699
+ '≈': '\\approx ',
1700
+ '≡': '\\equiv ',
1701
+ '≅': '\\cong ',
1702
+ '∼': '\\sim ',
1703
+ '≃': '\\simeq ',
1704
+ '≐': '\\doteq ',
1705
+ '∝': '\\propto ',
1706
+ '∴': '\\therefore ',
1707
+ '∵': '\\because ',
1708
+ '∀': '\\forall ',
1709
+ '∃': '\\exists ',
1710
+ '∄': '\\nexists ',
1711
+ '∅': '\\emptyset ',
1712
+ '∇': '\\nabla ',
1713
+ '∧': '\\wedge ',
1714
+ '∨': '\\vee ',
1715
+ '¬': '\\neg ',
1716
+ '∩': '\\cap ',
1717
+ '∪': '\\cup ',
1718
+ '⊂': '\\subset ',
1719
+ '⊃': '\\supset ',
1720
+ '⊆': '\\subseteq ',
1721
+ '⊇': '\\supseteq ',
1722
+ '⊕': '\\oplus ',
1723
+ '⊗': '\\otimes ',
1724
+ '⊥': '\\perp ',
1725
+ '°': '\\degree ',
1726
+ '′': '\\prime ',
1727
+ '″': '\\prime\\prime ',
1728
+ '…': '\\ldots ',
1729
+ α: '\\alpha ',
1730
+ β: '\\beta ',
1731
+ γ: '\\gamma ',
1732
+ δ: '\\delta ',
1733
+ ε: '\\epsilon ',
1734
+ ζ: '\\zeta ',
1735
+ η: '\\eta ',
1736
+ θ: '\\theta ',
1737
+ ι: '\\iota ',
1738
+ κ: '\\kappa ',
1739
+ λ: '\\lambda ',
1740
+ μ: '\\mu ',
1741
+ ν: '\\nu ',
1742
+ ξ: '\\xi ',
1743
+ ο: '\\omicron ',
1744
+ π: '\\pi ',
1745
+ ρ: '\\rho ',
1746
+ ς: '\\varsigma ',
1747
+ σ: '\\sigma ',
1748
+ τ: '\\tau ',
1749
+ υ: '\\upsilon ',
1750
+ φ: '\\phi ',
1751
+ χ: '\\chi ',
1752
+ ψ: '\\psi ',
1753
+ ω: '\\omega ',
1754
+ '∂': '\\partial ',
1755
+ ϵ: '\\epsilon ',
1756
+ ϑ: '\\vartheta ',
1757
+ ϰ: '\\varkappa ',
1758
+ ϕ: '\\phi ',
1759
+ ϱ: '\\varrho ',
1760
+ ϖ: '\\varpi ',
1761
+ 𝐴: 'A',
1762
+ 𝐵: 'B',
1763
+ 𝐶: 'C',
1764
+ 𝐷: 'D',
1765
+ 𝐸: 'E',
1766
+ 𝐹: 'F',
1767
+ 𝐺: 'G',
1768
+ 𝐻: 'H',
1769
+ 𝐼: 'I',
1770
+ 𝐽: 'J',
1771
+ 𝐾: 'K',
1772
+ 𝐿: 'L',
1773
+ 𝑀: 'M',
1774
+ 𝑁: 'N',
1775
+ 𝑂: 'O',
1776
+ 𝑃: 'P',
1777
+ 𝑄: 'Q',
1778
+ 𝑅: 'R',
1779
+ 𝑆: 'S',
1780
+ 𝑇: 'T',
1781
+ 𝑈: 'U',
1782
+ 𝑉: 'V',
1783
+ 𝑊: 'W',
1784
+ 𝑋: 'X',
1785
+ 𝑌: 'Y',
1786
+ 𝑍: 'Z',
1787
+ 𝑎: 'a',
1788
+ 𝑏: 'b',
1789
+ 𝑐: 'c',
1790
+ 𝑑: 'd',
1791
+ 𝑒: 'e',
1792
+ 𝑓: 'f',
1793
+ 𝑔: 'g',
1794
+ 𝑖: 'i',
1795
+ 𝑗: 'j',
1796
+ 𝑘: 'k',
1797
+ 𝑙: 'l',
1798
+ 𝑚: 'm',
1799
+ 𝑛: 'n',
1800
+ 𝑜: 'o',
1801
+ 𝑝: 'p',
1802
+ 𝑞: 'q',
1803
+ 𝑟: 'r',
1804
+ 𝑠: 's',
1805
+ 𝑡: 't',
1806
+ 𝑢: 'u',
1807
+ 𝑣: 'v',
1808
+ 𝑤: 'w',
1809
+ 𝑥: 'x',
1810
+ 𝑦: 'y',
1811
+ 𝑧: 'z'
1812
+ };
1813
+ const FUNC = {
1814
+ sin: '\\sin({fe})',
1815
+ cos: '\\cos({fe})',
1816
+ tan: '\\tan({fe})',
1817
+ cot: '\\cot({fe})',
1818
+ sec: '\\sec({fe})',
1819
+ csc: '\\csc({fe})',
1820
+ arcsin: '\\arcsin({fe})',
1821
+ arccos: '\\arccos({fe})',
1822
+ arctan: '\\arctan({fe})',
1823
+ arccot: '\\arccot({fe})',
1824
+ arcsec: '\\arcsec({fe})',
1825
+ arccsc: '\\arccsc({fe})',
1826
+ sinh: '\\sinh({fe})',
1827
+ cosh: '\\cosh({fe})',
1828
+ tanh: '\\tanh({fe})',
1829
+ coth: '\\coth({fe})',
1830
+ sech: '\\sech({fe})',
1831
+ csch: '\\csch({fe})',
1832
+ arcsinh: '\\arcsinh({fe})',
1833
+ arccosh: '\\arccosh({fe})',
1834
+ arctanh: '\\arctanh({fe})',
1835
+ arccoth: '\\arccoth({fe})',
1836
+ arcsech: '\\arcsech({fe})',
1837
+ arccsch: '\\arccsch({fe})',
1838
+ log: '\\log{{fe}}',
1839
+ ln: '\\ln{{fe}}',
1840
+ lg: '\\lg{{fe}}',
1841
+ exp: '\\exp({fe})',
1842
+ arg: '\\arg({fe})',
1843
+ deg: '\\deg({fe})',
1844
+ det: '\\det({fe})',
1845
+ dim: '\\dim({fe})',
1846
+ gcd: '\\gcd({fe})',
1847
+ hom: '\\hom({fe})',
1848
+ ker: '\\ker({fe})',
1849
+ mod: '\\bmod({fe})',
1850
+ Pr: '\\Pr({fe})'
1851
+ };
1852
+ const CHR_DEFAULT = {
1853
+ ACC_VAL: '\\hat{{{0}}}'
1854
+ };
1855
+ const POS = {
1856
+ top: '\\overline{{{0}}}',
1857
+ bot: '\\underline{{{0}}}'
1858
+ };
1859
+ const POS_DEFAULT = {
1860
+ BAR_VAL: '\\overline{{{0}}}'
1861
+ };
1862
+ const F = {
1863
+ bar: '\\frac{{{num}}}{{{den}}}',
1864
+ skw: '^{{{num}}}/_{{{den}}}',
1865
+ noBar: '\\genfrac{{}}{{}}{{0pt}}{{}}{{{num}}}{{{den}}}',
1866
+ lin: '{{{num}}}/{{{den}}}'
1867
+ };
1868
+ const F_DEFAULT = '\\frac{{{num}}}{{{den}}}';
1869
+ const D = '\\left{left}{text}\\right{right}';
1870
+ const D_DEFAULT = {
1871
+ left: '(',
1872
+ right: ')',
1873
+ null: '.'
1874
+ };
1875
+ const RAD = '\\sqrt[{deg}]{{{text}}}';
1876
+ const RAD_DEFAULT = '\\sqrt{{{text}}}';
1877
+ const ARR = '\\begin{{array}}{{c}}{text}\\end{{array}}';
1878
+ const LIM_FUNC = {
1879
+ lim: '\\lim_{{{lim}}}',
1880
+ max: '\\max_{{{lim}}}',
1881
+ min: '\\min_{{{lim}}}',
1882
+ sup: '\\sup_{{{lim}}}',
1883
+ inf: '\\inf_{{{lim}}}',
1884
+ limsup: '\\limsup_{{{lim}}}',
1885
+ liminf: '\\liminf_{{{lim}}}',
1886
+ injlim: '\\injlim_{{{lim}}}',
1887
+ projlim: '\\projlim_{{{lim}}}'
1888
+ };
1889
+ const LIM_TO = [
1890
+ '\\rightarrow',
1891
+ '\\to'
1892
+ ];
1893
+ const LIM_UPP = '\\overset{{{lim}}}{{{text}}}';
1894
+ const M = '\\begin{{matrix}}{text}\\end{{matrix}}';
1895
+ function _define_property(obj, key, value) {
1896
+ if (key in obj) Object.defineProperty(obj, key, {
1897
+ value: value,
1898
+ enumerable: true,
1899
+ configurable: true,
1900
+ writable: true
1901
+ });
1902
+ else obj[key] = value;
1903
+ return obj;
1904
+ }
1905
+ const VAL_SUFFIX = 'val';
1906
+ function localName(tagName) {
1907
+ const idx = tagName.indexOf(':');
1908
+ return -1 === idx ? tagName : tagName.slice(idx + 1);
1909
+ }
1910
+ function isElement(node) {
1911
+ return 'string' != typeof node;
1912
+ }
1913
+ function textContent(node) {
1914
+ let out = '';
1915
+ for (const child of node.children)out += 'string' == typeof child ? child : textContent(child);
1916
+ return out;
1917
+ }
1918
+ function pyFormat(template, positional = [], named = {}) {
1919
+ let out = '';
1920
+ let i = 0;
1921
+ const n = template.length;
1922
+ while(i < n){
1923
+ const ch = template[i];
1924
+ if ('{' === ch) {
1925
+ if ('{' === template[i + 1]) {
1926
+ out += '{';
1927
+ i += 2;
1928
+ continue;
1929
+ }
1930
+ const close = template.indexOf('}', i + 1);
1931
+ if (-1 === close) {
1932
+ out += ch;
1933
+ i += 1;
1934
+ continue;
1935
+ }
1936
+ const field = template.slice(i + 1, close);
1937
+ if (/^\d+$/.test(field)) out += positional[Number(field)] ?? '';
1938
+ else out += named[field] ?? '';
1939
+ i = close + 1;
1940
+ continue;
1941
+ }
1942
+ if ('}' === ch && '}' === template[i + 1]) {
1943
+ out += '}';
1944
+ i += 2;
1945
+ continue;
1946
+ }
1947
+ out += ch;
1948
+ i += 1;
1949
+ }
1950
+ return out;
1951
+ }
1952
+ function escapeLatex(strs) {
1953
+ const collapsed = strs.split('\\\\').join('\\');
1954
+ let out = '';
1955
+ let last = null;
1956
+ for (const c of collapsed){
1957
+ if (CHARS.includes(c) && "\\" !== last) out += "\\" + c;
1958
+ else out += c;
1959
+ last = c;
1960
+ }
1961
+ return out;
1962
+ }
1963
+ function getVal(key, def, store) {
1964
+ if (void 0 !== key) {
1965
+ if (!store) return key;
1966
+ return void 0 !== store[key] ? store[key] : key;
1967
+ }
1968
+ return def;
1969
+ }
1970
+ const PR_VAL_TAGS = new Set([
1971
+ 'chr',
1972
+ 'pos',
1973
+ 'begChr',
1974
+ 'endChr',
1975
+ 'type'
1976
+ ]);
1977
+ class Pr {
1978
+ get(name) {
1979
+ return this.attrs[name];
1980
+ }
1981
+ constructor(elm, conv){
1982
+ _define_property(this, "text", '');
1983
+ _define_property(this, "attrs", {});
1984
+ for (const child of elm.children){
1985
+ if (!isElement(child)) continue;
1986
+ const stag = localName(child.tagName);
1987
+ if ('brk' === stag) {
1988
+ this.attrs['brk'] = "\\\\";
1989
+ this.text += "\\\\";
1990
+ } else if (PR_VAL_TAGS.has(stag)) this.attrs[stag] = getAttr(child, VAL_SUFFIX);
1991
+ }
1992
+ }
1993
+ }
1994
+ function getAttr(node, attrLocal) {
1995
+ for (const key of Object.keys(node.attributes))if (localName(key) === attrLocal) {
1996
+ const v = node.attributes[key];
1997
+ return null == v ? void 0 : v;
1998
+ }
1999
+ }
2000
+ const DIRECT_TAGS = new Set([
2001
+ 'box',
2002
+ 'sSub',
2003
+ 'sSup',
2004
+ 'sSubSup',
2005
+ 'num',
2006
+ 'den',
2007
+ 'deg',
2008
+ 'e'
2009
+ ]);
2010
+ class Converter {
2011
+ convert(node) {
2012
+ const out = this.oMath(node);
2013
+ for (const name of this.unsupported)this.options.onUnsupported?.(name);
2014
+ return out;
2015
+ }
2016
+ noteUnsupported(stag) {
2017
+ this.unsupported.add(stag);
2018
+ }
2019
+ oMath(elm) {
2020
+ return this.processChildren(elm);
2021
+ }
2022
+ processChildrenList(elm, include) {
2023
+ const out = [];
2024
+ for (const child of elm.children){
2025
+ if (!isElement(child)) continue;
2026
+ const stag = localName(child.tagName);
2027
+ if (include && !include.has(stag)) continue;
2028
+ let value = this.dispatch(stag, child);
2029
+ if (null == value) {
2030
+ value = this.processUnknown(stag, child);
2031
+ if (null == value) continue;
2032
+ }
2033
+ out.push({
2034
+ stag,
2035
+ value,
2036
+ node: child
2037
+ });
2038
+ }
2039
+ return out;
2040
+ }
2041
+ processChildrenDict(elm, include) {
2042
+ const dict = {};
2043
+ for (const { stag, value } of this.processChildrenList(elm, include))dict[stag] = value;
2044
+ return dict;
2045
+ }
2046
+ processChildren(elm, include) {
2047
+ let out = '';
2048
+ for (const { value } of this.processChildrenList(elm, include))out += value instanceof Pr ? value.text : String(value);
2049
+ return out;
2050
+ }
2051
+ dispatch(stag, elm) {
2052
+ switch(stag){
2053
+ case 'acc':
2054
+ return this.doAcc(elm);
2055
+ case 'r':
2056
+ return this.doR(elm);
2057
+ case 'bar':
2058
+ return this.doBar(elm);
2059
+ case 'sub':
2060
+ return this.doSub(elm);
2061
+ case 'sup':
2062
+ return this.doSup(elm);
2063
+ case 'f':
2064
+ return this.doF(elm);
2065
+ case 'func':
2066
+ return this.doFunc(elm);
2067
+ case 'fName':
2068
+ return this.doFName(elm);
2069
+ case 'groupChr':
2070
+ return this.doGroupChr(elm);
2071
+ case 'd':
2072
+ return this.doD(elm);
2073
+ case 'rad':
2074
+ return this.doRad(elm);
2075
+ case 'eqArr':
2076
+ return this.doEqArr(elm);
2077
+ case 'limLow':
2078
+ return this.doLimLow(elm);
2079
+ case 'limUpp':
2080
+ return this.doLimUpp(elm);
2081
+ case 'lim':
2082
+ return this.doLim(elm);
2083
+ case 'm':
2084
+ return this.doM(elm);
2085
+ case 'mr':
2086
+ return this.doMr(elm);
2087
+ case 'nary':
2088
+ return this.doNary(elm);
2089
+ default:
2090
+ return null;
2091
+ }
2092
+ }
2093
+ processUnknown(stag, elm) {
2094
+ if (DIRECT_TAGS.has(stag)) return this.processChildren(elm);
2095
+ if (stag.endsWith('Pr')) return new Pr(elm, this);
2096
+ this.noteUnsupported(stag);
2097
+ return textContent(elm);
2098
+ }
2099
+ doAcc(elm) {
2100
+ const c = this.processChildrenDict(elm);
2101
+ const pr = c['accPr'];
2102
+ const latexS = getVal(pr?.get('chr'), CHR_DEFAULT.ACC_VAL, CHR) ?? '';
2103
+ const e = c['e'] ?? '';
2104
+ return pyFormat(latexS, [
2105
+ e
2106
+ ]);
2107
+ }
2108
+ doBar(elm) {
2109
+ const c = this.processChildrenDict(elm);
2110
+ const pr = c['barPr'];
2111
+ const latexS = getVal(pr?.get('pos'), POS_DEFAULT.BAR_VAL, POS) ?? '';
2112
+ const e = c['e'] ?? '';
2113
+ return (pr?.text ?? '') + pyFormat(latexS, [
2114
+ e
2115
+ ]);
2116
+ }
2117
+ doD(elm) {
2118
+ const c = this.processChildrenDict(elm);
2119
+ const pr = c['dPr'];
2120
+ const nullChar = D_DEFAULT["null"];
2121
+ const sVal = getVal(pr?.get('begChr'), D_DEFAULT.left, T);
2122
+ const eVal = getVal(pr?.get('endChr'), D_DEFAULT.right, T);
2123
+ const text = c['e'] ?? '';
2124
+ return (pr?.text ?? '') + pyFormat(D, [], {
2125
+ left: sVal ? escapeLatex(sVal) : nullChar,
2126
+ text,
2127
+ right: eVal ? escapeLatex(eVal) : nullChar
2128
+ });
2129
+ }
2130
+ doSub(elm) {
2131
+ return pyFormat(SUB_TEMPLATE, [
2132
+ this.processChildren(elm)
2133
+ ]);
2134
+ }
2135
+ doSup(elm) {
2136
+ return pyFormat(SUP_TEMPLATE, [
2137
+ this.processChildren(elm)
2138
+ ]);
2139
+ }
2140
+ doF(elm) {
2141
+ const c = this.processChildrenDict(elm);
2142
+ const pr = c['fPr'];
2143
+ const latexS = getVal(pr?.get('type'), F_DEFAULT, F) ?? '';
2144
+ const num = c['num'] ?? '';
2145
+ const den = c['den'] ?? '';
2146
+ return (pr?.text ?? '') + pyFormat(latexS, [], {
2147
+ num,
2148
+ den
2149
+ });
2150
+ }
2151
+ doFunc(elm) {
2152
+ const c = this.processChildrenDict(elm);
2153
+ const fName = c['fName'] ?? '';
2154
+ const e = c['e'] ?? '';
2155
+ return fName.split("{fe}").join(e);
2156
+ }
2157
+ doFName(elm) {
2158
+ const parts = [];
2159
+ for (const { stag, value } of this.processChildrenList(elm))if ('r' === stag) {
2160
+ const key = String(value).trim();
2161
+ if (void 0 !== FUNC[key]) parts.push(FUNC[key]);
2162
+ else {
2163
+ this.noteUnsupported('fName:' + key);
2164
+ parts.push(String(value));
2165
+ }
2166
+ } else parts.push(String(value));
2167
+ const joined = parts.join("");
2168
+ return joined.includes("{fe}") ? joined : joined + "{fe}";
2169
+ }
2170
+ doGroupChr(elm) {
2171
+ const c = this.processChildrenDict(elm);
2172
+ const pr = c['groupChrPr'];
2173
+ const latexS = getVal(pr?.get('chr'), void 0, CHR) ?? '';
2174
+ const e = c['e'] ?? '';
2175
+ return (pr?.text ?? '') + pyFormat(latexS, [
2176
+ e
2177
+ ]);
2178
+ }
2179
+ doRad(elm) {
2180
+ const c = this.processChildrenDict(elm);
2181
+ const text = c['e'] ?? '';
2182
+ const deg = c['deg'];
2183
+ if (deg) return pyFormat(RAD, [], {
2184
+ deg,
2185
+ text
2186
+ });
2187
+ return pyFormat(RAD_DEFAULT, [], {
2188
+ text
2189
+ });
2190
+ }
2191
+ doEqArr(elm) {
2192
+ const rows = this.processChildrenList(elm, new Set([
2193
+ 'e'
2194
+ ])).map((c)=>String(c.value));
2195
+ return pyFormat(ARR, [], {
2196
+ text: rows.join("\\\\")
2197
+ });
2198
+ }
2199
+ doLimLow(elm) {
2200
+ const c = this.processChildrenDict(elm, new Set([
2201
+ 'e',
2202
+ 'lim'
2203
+ ]));
2204
+ const e = c['e'] ?? '';
2205
+ const lim = c['lim'] ?? '';
2206
+ const latexS = LIM_FUNC[e];
2207
+ if (!latexS) {
2208
+ this.noteUnsupported('limLow:' + e);
2209
+ return e + lim;
2210
+ }
2211
+ return pyFormat(latexS, [], {
2212
+ lim
2213
+ });
2214
+ }
2215
+ doLimUpp(elm) {
2216
+ const c = this.processChildrenDict(elm, new Set([
2217
+ 'e',
2218
+ 'lim'
2219
+ ]));
2220
+ const lim = c['lim'] ?? '';
2221
+ const text = c['e'] ?? '';
2222
+ return pyFormat(LIM_UPP, [], {
2223
+ lim,
2224
+ text
2225
+ });
2226
+ }
2227
+ doLim(elm) {
2228
+ return this.processChildren(elm).split(LIM_TO["0"]).join(LIM_TO["1"]);
2229
+ }
2230
+ doM(elm) {
2231
+ const rows = [];
2232
+ for (const { stag, value } of this.processChildrenList(elm))if ('mPr' !== stag) {
2233
+ if ('mr' === stag) rows.push(String(value));
2234
+ }
2235
+ return pyFormat(M, [], {
2236
+ text: rows.join("\\\\")
2237
+ });
2238
+ }
2239
+ doMr(elm) {
2240
+ return this.processChildrenList(elm, new Set([
2241
+ 'e'
2242
+ ])).map((c)=>String(c.value)).join("&");
2243
+ }
2244
+ doNary(elm) {
2245
+ const res = [];
2246
+ let bo = '';
2247
+ for (const { stag, value } of this.processChildrenList(elm))if ('naryPr' === stag) bo = getVal(value.get('chr'), void 0, CHR_BO) ?? '';
2248
+ else res.push(String(value));
2249
+ return bo + res.join("");
2250
+ }
2251
+ processUnicode(s) {
2252
+ let out = '';
2253
+ for (const ch of s.normalize('NFC')){
2254
+ const mapped = T[ch];
2255
+ if (void 0 !== mapped) out += mapped;
2256
+ else if (CHARS.includes(ch)) out += ch;
2257
+ else out += unicodeToLatex(ch);
2258
+ }
2259
+ return out;
2260
+ }
2261
+ doR(elm) {
2262
+ const strs = [];
2263
+ const baseStrs = [];
2264
+ for (const child of elm.children){
2265
+ if (!isElement(child)) continue;
2266
+ if ('t' !== localName(child.tagName)) continue;
2267
+ const s = textContent(child);
2268
+ strs.push(this.processUnicode(s));
2269
+ baseStrs.push(s);
2270
+ }
2271
+ let procStr = escapeLatex(strs.join(""));
2272
+ const baseProcStr = baseStrs.join("");
2273
+ if (!baseProcStr.includes('{') && procStr.includes('\\{')) procStr = procStr.split('\\{').join('{');
2274
+ if (!baseProcStr.includes('}') && procStr.includes('\\}')) procStr = procStr.split('\\}').join('}');
2275
+ return procStr;
2276
+ }
2277
+ constructor(options = {}){
2278
+ _define_property(this, "options", void 0);
2279
+ _define_property(this, "unsupported", void 0);
2280
+ this.options = options;
2281
+ this.unsupported = new Set();
2282
+ }
2283
+ }
2284
+ const SUB_TEMPLATE = '_{{{0}}}';
2285
+ const SUP_TEMPLATE = '^{{{0}}}';
2286
+ function ommlNodeToLatex(node, options = {}) {
2287
+ return new Converter(options).convert(node);
2288
+ }
2289
+ function findAll(nodes, name, acc = []) {
2290
+ for (const node of nodes)if ('string' != typeof node) {
2291
+ if (localName(node.tagName) === name) acc.push(node);
2292
+ findAll(node.children, name, acc);
2293
+ }
2294
+ return acc;
2295
+ }
2296
+ function elementChildren(node) {
2297
+ return node.children.filter((c)=>'string' != typeof c);
2298
+ }
2299
+ function collectOMathNodes(nodes) {
2300
+ const elements = nodes.filter((n)=>'string' != typeof n);
2301
+ if (1 === elements.length) {
2302
+ const root = elements[0];
2303
+ const name = localName(root.tagName);
2304
+ if ('oMath' === name) return [
2305
+ root
2306
+ ];
2307
+ if ('oMathPara' === name || 'm' === name) {
2308
+ const found = findAll(root.children, 'oMath');
2309
+ if (found.length > 0) return found;
2310
+ return [];
2311
+ }
2312
+ }
2313
+ return findAll(nodes, 'oMath');
2314
+ }
2315
+ function ommlToLatex(xml, options = {}) {
2316
+ const nodes = parse(xml, {
2317
+ decodeEntities: true
2318
+ });
2319
+ const omaths = collectOMathNodes(nodes);
2320
+ let out = '';
2321
+ for (const omath of omaths)out += ommlNodeToLatex(omath, options);
2322
+ return out.trim();
2323
+ }
2324
+ function extractOmmlLatex(xml, options = {}) {
2325
+ const nodes = parse(xml, {
2326
+ decodeEntities: true
2327
+ });
2328
+ return findAll(nodes, 'oMath').map((omath)=>ommlNodeToLatex(omath, options).trim());
2329
+ }
2330
+ export { elementChildren, escapeLatex, extractOmmlLatex, localName, ommlNodeToLatex, ommlToLatex, textContent, unicodeToLatex };
2331
+
2332
+ //# sourceMappingURL=index.js.map