tex2typst 0.3.6 → 0.3.8
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/generic.d.ts +1 -0
- package/dist/index.js +899 -765
- package/dist/tex-parser.d.ts +1 -0
- package/dist/tex2typst.min.js +13 -13
- package/dist/types.d.ts +6 -2
- package/dist/typst-parser.d.ts +2 -1
- package/package.json +1 -1
- package/src/convert.ts +27 -9
- package/src/generic.ts +13 -0
- package/src/map.ts +729 -747
- package/src/tex-parser.ts +81 -6
- package/src/types.ts +6 -2
- package/src/typst-parser.ts +65 -15
- package/src/typst-writer.ts +0 -2
- package/tools/make-symbol-map.py +7 -2
package/src/map.ts
CHANGED
|
@@ -55,67 +55,29 @@ const symbolMap = new Map<string, string>([
|
|
|
55
55
|
// TODO: \pmb need special logic to handle but it is not implemented now. See the commented test case.
|
|
56
56
|
['pmb', 'bold'],
|
|
57
57
|
|
|
58
|
-
/* variants of plus,minus,times,divide */
|
|
59
|
-
['pm', 'plus.minus'],
|
|
60
|
-
['mp', 'minus.plus'],
|
|
61
|
-
['boxplus', 'plus.square'],
|
|
62
|
-
['otimes', 'times.circle'],
|
|
63
|
-
['boxtimes', 'times.square'],
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
/* wave */
|
|
67
|
-
// tex: \sim \approx \cong \simeq \asymp \equiv \propto
|
|
68
|
-
// typst: tilde.op approx tilde.equiv tilde.eq ≍ equiv prop
|
|
69
|
-
['approx', 'approx'],
|
|
70
|
-
['cong', 'tilde.equiv'],
|
|
71
|
-
['simeq', 'tilde.eq'],
|
|
72
|
-
['asymp', '≍'], // just use the unicode character :-)
|
|
73
|
-
['equiv', 'equiv'],
|
|
74
|
-
['propto', 'prop'],
|
|
75
|
-
|
|
76
|
-
/* arrows */
|
|
77
|
-
// ['longmapsto', 'arrow.r.bar'],
|
|
78
58
|
['leadsto', 'arrow.r.squiggly'],
|
|
59
|
+
['P', 'pilcrow'],
|
|
60
|
+
['S', 'section'],
|
|
61
|
+
['aleph', 'alef'],
|
|
79
62
|
|
|
80
63
|
|
|
81
|
-
['Cap', 'sect.double'],
|
|
82
|
-
['Cup', 'union.double'],
|
|
83
64
|
['Delta', 'Delta'],
|
|
84
65
|
['Gamma', 'Gamma'],
|
|
85
|
-
['Join', 'join'],
|
|
86
66
|
['Lambda', 'Lambda'],
|
|
87
67
|
['Omega', 'Omega'],
|
|
88
|
-
['P', 'pilcrow'],
|
|
89
68
|
['Phi', 'Phi'],
|
|
90
69
|
['Pi', 'Pi'],
|
|
91
70
|
['Psi', 'Psi'],
|
|
92
|
-
['Rightarrow', 'arrow.r.double'],
|
|
93
|
-
['S', 'section'],
|
|
94
71
|
['Sigma', 'Sigma'],
|
|
95
72
|
['Theta', 'Theta'],
|
|
96
|
-
|
|
73
|
+
|
|
97
74
|
['alpha', 'alpha'],
|
|
98
75
|
// ['amalg', 'product.co'],
|
|
99
|
-
['angle', 'angle'],
|
|
100
|
-
['approx', 'approx'],
|
|
101
|
-
['approxeq', 'approx.eq'],
|
|
102
|
-
// ['ast', 'ast'],
|
|
103
76
|
['beta', 'beta'],
|
|
104
|
-
|
|
77
|
+
|
|
105
78
|
['bigcirc', 'circle.big'],
|
|
106
|
-
['bigcup', 'union.big'],
|
|
107
|
-
['bigodot', 'dot.circle.big'],
|
|
108
|
-
// ['bigoplus', 'xor.big'], // or "plus.circle.big"
|
|
109
|
-
['bigotimes', 'times.circle.big'],
|
|
110
|
-
['bigsqcup', 'union.sq.big'],
|
|
111
|
-
// ['bigtriangledown', 'triangle.b'],
|
|
112
|
-
// ['bigtriangleup', 'triangle.t'],
|
|
113
|
-
['biguplus', 'union.plus.big'],
|
|
114
|
-
['bigvee', 'or.big'],
|
|
115
|
-
['bigwedge', 'and.big'],
|
|
116
79
|
// ['bowtie', 'join'],
|
|
117
80
|
['bullet', 'bullet'],
|
|
118
|
-
['cap', 'sect'],
|
|
119
81
|
['cdot', 'dot.op'], // 'dot.op' or 'dot.c'
|
|
120
82
|
['cdots', 'dots.c'],
|
|
121
83
|
['checkmark', 'checkmark'],
|
|
@@ -210,7 +172,6 @@ const symbolMap = new Map<string, string>([
|
|
|
210
172
|
['oiint', 'integral.surf'],
|
|
211
173
|
['oiiint', 'integral.vol'],
|
|
212
174
|
['omega', 'omega'],
|
|
213
|
-
// ['omicron', 'omicron'],
|
|
214
175
|
['ominus', 'minus.circle'],
|
|
215
176
|
// ['oplus', 'xor'], // or 'plus.circle'
|
|
216
177
|
['otimes', 'times.circle'],
|
|
@@ -243,8 +204,6 @@ const symbolMap = new Map<string, string>([
|
|
|
243
204
|
['smallsetminus', 'without'],
|
|
244
205
|
// ['smile', 'paren.b'],
|
|
245
206
|
['spadesuit', 'suit.spade'],
|
|
246
|
-
['sqcap', 'sect.sq'],
|
|
247
|
-
['sqcup', 'union.sq'],
|
|
248
207
|
['sqsubseteq', 'subset.eq.sq'],
|
|
249
208
|
['sqsupseteq', 'supset.eq.sq'],
|
|
250
209
|
// ['star', 'star'],
|
|
@@ -294,761 +253,784 @@ const symbolMap = new Map<string, string>([
|
|
|
294
253
|
|
|
295
254
|
// The following are from Typst documentation website, augo-generated by the script
|
|
296
255
|
const map_from_official_docs: Map<string, string> = new Map([
|
|
297
|
-
['
|
|
298
|
-
['
|
|
299
|
-
['rparen', 'paren.r'],
|
|
300
|
-
['rParen', 'paren.r.double'],
|
|
301
|
-
['overparen', 'paren.t'],
|
|
302
|
-
['underparen', 'paren.b'],
|
|
303
|
-
['lbrace', 'brace.l'],
|
|
304
|
-
['lBrace', 'brace.l.double'],
|
|
305
|
-
['rbrace', 'brace.r'],
|
|
306
|
-
['rBrace', 'brace.r.double'],
|
|
307
|
-
// ['overbrace', 'brace.t'],
|
|
308
|
-
['underbrace', 'brace.b'],
|
|
309
|
-
['lbrack', 'bracket.l'],
|
|
310
|
-
['lBrack', 'bracket.l.double'],
|
|
311
|
-
['rbrack', 'bracket.r'],
|
|
312
|
-
['rBrack', 'bracket.r.double'],
|
|
313
|
-
['overbracket', 'bracket.t'],
|
|
314
|
-
['underbracket', 'bracket.b'],
|
|
315
|
-
['lbrbrak', 'shell.l'],
|
|
316
|
-
['Lbrbrak', 'shell.l.double'],
|
|
317
|
-
['rbrbrak', 'shell.r'],
|
|
318
|
-
['Rbrbrak', 'shell.r.double'],
|
|
319
|
-
['obrbrak', 'shell.t'],
|
|
320
|
-
['ubrbrak', 'shell.b'],
|
|
321
|
-
['vert', 'bar.v'],
|
|
322
|
-
['Vert', 'bar.v.double'],
|
|
323
|
-
['Vvert', 'bar.v.triple'],
|
|
324
|
-
['circledvert', 'bar.v.circle'],
|
|
325
|
-
['horizbar', 'bar.h'],
|
|
326
|
-
['lvzigzag', 'fence.l'],
|
|
327
|
-
['Lvzigzag', 'fence.l.double'],
|
|
328
|
-
['rvzigzag', 'fence.r'],
|
|
329
|
-
['Rvzigzag', 'fence.r.double'],
|
|
330
|
-
['fourvdots', 'fence.dotted'],
|
|
331
|
-
['angle', 'angle'],
|
|
332
|
-
['langle', 'angle.l'],
|
|
333
|
-
['lcurvyangle', 'angle.l.curly'],
|
|
334
|
-
['langledot', 'angle.l.dot'],
|
|
335
|
-
['rangle', 'angle.r'],
|
|
336
|
-
['rcurvyangle', 'angle.r.curly'],
|
|
337
|
-
['rangledot', 'angle.r.dot'],
|
|
256
|
+
['acwopencirclearrow', 'arrow.ccw'],
|
|
257
|
+
['adots', 'dots.up'],
|
|
338
258
|
['angdnr', 'angle.acute'],
|
|
339
|
-
['
|
|
340
|
-
['measuredangleleft', 'angle.arc.rev'],
|
|
341
|
-
['wideangledown', 'angle.oblique'],
|
|
342
|
-
['revangle', 'angle.rev'],
|
|
343
|
-
['rightangle', 'angle.right'],
|
|
344
|
-
['measuredrightangle', 'angle.right.arc'],
|
|
345
|
-
['rightanglemdot', 'angle.right.dot'],
|
|
346
|
-
['rightanglesqr', 'angle.right.sq'],
|
|
259
|
+
['angle', 'angle'],
|
|
347
260
|
['angles', 'angle.s'],
|
|
348
|
-
['
|
|
349
|
-
['
|
|
350
|
-
['
|
|
351
|
-
['
|
|
352
|
-
['lceil', 'ceil.l'],
|
|
353
|
-
['rceil', 'ceil.r'],
|
|
354
|
-
['lfloor', 'floor.l'],
|
|
355
|
-
['rfloor', 'floor.r'],
|
|
356
|
-
['mathampersand', 'amp'],
|
|
357
|
-
['upand', 'amp.inv'],
|
|
261
|
+
['approx', 'approx'],
|
|
262
|
+
['approxeq', 'approx.eq'],
|
|
263
|
+
['approxident', 'tilde.triple'],
|
|
264
|
+
['assert', 'tack.r.short'],
|
|
358
265
|
['ast', 'ast.op'],
|
|
359
|
-
['
|
|
360
|
-
['
|
|
361
|
-
['
|
|
266
|
+
['asymp', 'asymp'],
|
|
267
|
+
['awint', 'integral.ccw'],
|
|
268
|
+
['backcong', 'tilde.rev.equiv'],
|
|
269
|
+
['backdprime', 'prime.double.rev'],
|
|
270
|
+
['backprime', 'prime.rev'],
|
|
271
|
+
['backsim', 'tilde.rev'],
|
|
272
|
+
['backsimeq', 'tilde.eq.rev'],
|
|
362
273
|
['backslash', 'backslash'],
|
|
363
|
-
['
|
|
364
|
-
['
|
|
365
|
-
['
|
|
274
|
+
['backtrprime', 'prime.triple.rev'],
|
|
275
|
+
['bardownharpoonleft', 'harpoon.bl.bar'],
|
|
276
|
+
['bardownharpoonright', 'harpoon.br.bar'],
|
|
277
|
+
['barleftarrow', 'arrow.l.stop'],
|
|
278
|
+
['barleftarrowrightarrowbar', 'arrows.lr.stop'],
|
|
279
|
+
['barleftharpoondown', 'harpoon.lb.stop'],
|
|
280
|
+
['barleftharpoonup', 'harpoon.lt.stop'],
|
|
281
|
+
['barrightharpoondown', 'harpoon.rb.bar'],
|
|
282
|
+
['barrightharpoonup', 'harpoon.rt.bar'],
|
|
283
|
+
['baruparrow', 'arrow.t.stop'],
|
|
284
|
+
['barupharpoonleft', 'harpoon.tl.stop'],
|
|
285
|
+
['barupharpoonright', 'harpoon.tr.stop'],
|
|
286
|
+
['barV', 'tack.b.double'],
|
|
287
|
+
['BbbA', 'AA'],
|
|
288
|
+
['BbbB', 'BB'],
|
|
289
|
+
['BbbC', 'CC'],
|
|
290
|
+
['BbbD', 'DD'],
|
|
291
|
+
['BbbE', 'EE'],
|
|
292
|
+
['BbbF', 'FF'],
|
|
293
|
+
['BbbG', 'GG'],
|
|
294
|
+
['BbbH', 'HH'],
|
|
295
|
+
['BbbI', 'II'],
|
|
296
|
+
['BbbJ', 'JJ'],
|
|
297
|
+
['BbbK', 'KK'],
|
|
298
|
+
['BbbL', 'LL'],
|
|
299
|
+
['BbbM', 'MM'],
|
|
300
|
+
['BbbN', 'NN'],
|
|
301
|
+
['BbbO', 'OO'],
|
|
302
|
+
['BbbP', 'PP'],
|
|
303
|
+
['BbbQ', 'QQ'],
|
|
304
|
+
['BbbR', 'RR'],
|
|
305
|
+
['BbbS', 'SS'],
|
|
306
|
+
['BbbT', 'TT'],
|
|
307
|
+
['BbbU', 'UU'],
|
|
308
|
+
['BbbV', 'VV'],
|
|
309
|
+
['BbbW', 'WW'],
|
|
310
|
+
['BbbX', 'XX'],
|
|
311
|
+
['BbbY', 'YY'],
|
|
312
|
+
['BbbZ', 'ZZ'],
|
|
313
|
+
['because', 'because'],
|
|
314
|
+
['bigblacktriangledown', 'triangle.filled.b'],
|
|
315
|
+
['bigblacktriangleup', 'triangle.filled.t'],
|
|
316
|
+
['bigbot', 'tack.t.big'],
|
|
317
|
+
['bigcap', 'inter.big'],
|
|
318
|
+
['bigcup', 'union.big'],
|
|
319
|
+
['bigcupdot', 'union.dot.big'],
|
|
320
|
+
['biginterleave', 'interleave.big'],
|
|
321
|
+
['bigodot', 'dot.circle.big'],
|
|
322
|
+
['bigoplus', 'plus.circle.big'], // or 'xor.big'
|
|
323
|
+
['bigotimes', 'times.circle.big'],
|
|
324
|
+
['bigsqcap', 'inter.sq.big'],
|
|
325
|
+
['bigsqcup', 'union.sq.big'],
|
|
326
|
+
['bigstar', 'star.filled'],
|
|
327
|
+
['bigtimes', 'times.big'],
|
|
328
|
+
['bigtop', 'tack.b.big'],
|
|
329
|
+
['bigtriangledown', 'triangle.stroked.b'], // or 'triangle.b'
|
|
330
|
+
['bigtriangleup', 'triangle.stroked.t'], // or 'triangle.t'
|
|
331
|
+
['biguplus', 'union.plus.big'],
|
|
332
|
+
['bigvee', 'or.big'],
|
|
333
|
+
['bigwedge', 'and.big'],
|
|
334
|
+
['bigwhitestar', 'star.stroked'],
|
|
335
|
+
['blackhourglass', 'hourglass.filled'],
|
|
336
|
+
['blacktriangle', 'triangle.filled.small.t'],
|
|
337
|
+
['blacktriangledown', 'triangle.filled.small.b'],
|
|
338
|
+
['blacktriangleleft', 'triangle.filled.l'],
|
|
339
|
+
['blacktriangleright', 'triangle.filled.r'],
|
|
340
|
+
['blkhorzoval', 'ellipse.filled.h'],
|
|
341
|
+
['blkvertoval', 'ellipse.filled.v'],
|
|
342
|
+
['bot', 'bot'],
|
|
343
|
+
['boxast', 'ast.square'],
|
|
344
|
+
['boxdot', 'dot.square'],
|
|
345
|
+
['boxminus', 'minus.square'],
|
|
346
|
+
['boxplus', 'plus.square'],
|
|
347
|
+
['boxtimes', 'times.square'],
|
|
348
|
+
['cap', 'inter'],
|
|
349
|
+
['Cap', 'inter.double'],
|
|
350
|
+
['capdot', 'inter.dot'],
|
|
351
|
+
['capwedge', 'inter.and'],
|
|
352
|
+
['caretinsert', 'caret'],
|
|
353
|
+
['cdot', 'dot.op'],
|
|
354
|
+
['cdotp', 'dot.c'],
|
|
355
|
+
['checkmark', 'checkmark'],
|
|
356
|
+
['circledast', 'ast.circle'],
|
|
357
|
+
['circledcirc', 'circle.nested'],
|
|
358
|
+
['circleddash', 'dash.circle'],
|
|
359
|
+
['circledequal', 'eq.circle'],
|
|
360
|
+
['circledparallel', 'parallel.circle'],
|
|
361
|
+
['circledvert', 'bar.v.circle'],
|
|
362
|
+
['clubsuit', 'suit.club.filled'],
|
|
366
363
|
['Colon', 'colon.double'],
|
|
367
364
|
['coloneq', 'colon.eq'],
|
|
368
365
|
['Coloneq', 'colon.double.eq'],
|
|
369
|
-
['
|
|
366
|
+
['complement', 'complement'],
|
|
367
|
+
['cong', 'tilde.equiv'],
|
|
368
|
+
['coprod', 'product.co'],
|
|
369
|
+
['cup', 'union'],
|
|
370
|
+
['Cup', 'union.double'],
|
|
371
|
+
['cupdot', 'union.dot'],
|
|
372
|
+
['cupleftarrow', 'union.arrow'],
|
|
373
|
+
['cupvee', 'union.or'],
|
|
374
|
+
['curlyeqprec', 'eq.prec'],
|
|
375
|
+
['curlyeqsucc', 'eq.succ'],
|
|
376
|
+
['curlyvee', 'or.curly'],
|
|
377
|
+
['curlywedge', 'and.curly'],
|
|
378
|
+
['curvearrowleft', 'arrow.ccw.half'],
|
|
379
|
+
['curvearrowright', 'arrow.cw.half'],
|
|
380
|
+
['cwopencirclearrow', 'arrow.cw'],
|
|
370
381
|
['dagger', 'dagger'],
|
|
371
|
-
['ddagger', 'dagger.double'],
|
|
372
382
|
['dashcolon', 'dash.colon'],
|
|
373
|
-
['
|
|
374
|
-
['
|
|
375
|
-
['
|
|
376
|
-
['
|
|
377
|
-
['cdotp', 'dot.c'],
|
|
378
|
-
['odot', 'dot.circle'],
|
|
379
|
-
['bigodot', 'dot.circle.big'],
|
|
380
|
-
['boxdot', 'dot.square'],
|
|
381
|
-
['dddot', 'dot.triple'],
|
|
383
|
+
['dashv', 'tack.l'],
|
|
384
|
+
['Dashv', 'tack.l.double'],
|
|
385
|
+
['dashVdash', 'tack.l.r'],
|
|
386
|
+
['ddagger', 'dagger.double'],
|
|
382
387
|
['ddddot', 'dot.quad'],
|
|
383
|
-
['
|
|
384
|
-
['Exclam', 'excl.double'],
|
|
385
|
-
['mathquestion', 'quest'],
|
|
386
|
-
['Question', 'quest.double'],
|
|
387
|
-
['mathoctothorpe', 'hash'],
|
|
388
|
-
// ['mathhyphen', 'hyph'],
|
|
389
|
-
['mathpercent', 'percent'],
|
|
390
|
-
['mathparagraph', 'pilcrow'],
|
|
391
|
-
['mathsection', 'section'],
|
|
392
|
-
['mathsemicolon', 'semi'],
|
|
393
|
-
['mathslash', 'slash'],
|
|
394
|
-
['sslash', 'slash.double'],
|
|
395
|
-
['trslash', 'slash.triple'],
|
|
396
|
-
['xsol', 'slash.big'],
|
|
397
|
-
['unicodecdots', 'dots.h.c'],
|
|
398
|
-
['unicodeellipsis', 'dots.h'],
|
|
399
|
-
['vdots', 'dots.v'],
|
|
388
|
+
['dddot', 'dot.triple'],
|
|
400
389
|
['ddots', 'dots.down'],
|
|
401
|
-
['
|
|
402
|
-
['
|
|
403
|
-
['
|
|
404
|
-
['
|
|
405
|
-
['
|
|
406
|
-
['
|
|
407
|
-
['
|
|
408
|
-
['
|
|
409
|
-
['
|
|
410
|
-
['
|
|
411
|
-
['
|
|
412
|
-
['
|
|
413
|
-
['
|
|
414
|
-
['
|
|
415
|
-
['
|
|
416
|
-
['backprime', 'prime.rev'],
|
|
417
|
-
['dprime', 'prime.double'],
|
|
418
|
-
['backdprime', 'prime.double.rev'],
|
|
419
|
-
['trprime', 'prime.triple'],
|
|
420
|
-
['backtrprime', 'prime.triple.rev'],
|
|
421
|
-
['qprime', 'prime.quad'],
|
|
422
|
-
['mathplus', 'plus'],
|
|
423
|
-
['oplus', 'plus.circle'],
|
|
424
|
-
['rightarrowonoplus', 'plus.circle.arrow'],
|
|
425
|
-
['bigoplus', 'plus.circle.big'],
|
|
390
|
+
['DDownarrow', 'arrow.b.quad'],
|
|
391
|
+
['Ddownarrow', 'arrow.b.triple'],
|
|
392
|
+
['diameter', 'diameter'],
|
|
393
|
+
['diamondcdot', 'diamond.stroked.dot'],
|
|
394
|
+
['diamondsuit', 'suit.diamond.stroked'],
|
|
395
|
+
['dicei', 'die.one'],
|
|
396
|
+
['diceii', 'die.two'],
|
|
397
|
+
['diceiii', 'die.three'],
|
|
398
|
+
['diceiv', 'die.four'],
|
|
399
|
+
['dicev', 'die.five'],
|
|
400
|
+
['dicevi', 'die.six'],
|
|
401
|
+
['div', 'div'],
|
|
402
|
+
['divideontimes', 'times.div'],
|
|
403
|
+
['Doteq', 'eq.dots'],
|
|
404
|
+
['dotminus', 'minus.dot'],
|
|
426
405
|
['dotplus', 'plus.dot'],
|
|
406
|
+
['dotsim', 'tilde.dot'],
|
|
407
|
+
['dottedcircle', 'circle.dotted'],
|
|
408
|
+
['dottedsquare', 'square.stroked.dotted'],
|
|
427
409
|
['doubleplus', 'plus.double'],
|
|
428
|
-
['
|
|
429
|
-
['
|
|
430
|
-
['
|
|
431
|
-
['
|
|
432
|
-
['
|
|
433
|
-
['
|
|
434
|
-
['
|
|
435
|
-
['
|
|
436
|
-
['
|
|
437
|
-
['
|
|
438
|
-
['
|
|
439
|
-
['
|
|
440
|
-
['
|
|
441
|
-
['
|
|
442
|
-
['
|
|
443
|
-
['
|
|
444
|
-
['
|
|
445
|
-
['
|
|
446
|
-
['
|
|
447
|
-
['
|
|
448
|
-
['
|
|
449
|
-
['
|
|
450
|
-
['
|
|
451
|
-
['
|
|
452
|
-
['mathratio', 'ratio'],
|
|
453
|
-
['equal', 'eq'],
|
|
454
|
-
['stareq', 'eq.star'],
|
|
455
|
-
['circledequal', 'eq.circle'],
|
|
410
|
+
['downarrow', 'arrow.b'],
|
|
411
|
+
['Downarrow', 'arrow.b.double'],
|
|
412
|
+
['downarrowbar', 'arrow.b.stop'],
|
|
413
|
+
['downdasharrow', 'arrow.b.dashed'],
|
|
414
|
+
['downdownarrows', 'arrows.bb'],
|
|
415
|
+
['downharpoonleft', 'harpoon.bl'],
|
|
416
|
+
['downharpoonleftbar', 'harpoon.bl.stop'],
|
|
417
|
+
['downharpoonright', 'harpoon.br'],
|
|
418
|
+
['downharpoonrightbar', 'harpoon.br.stop'],
|
|
419
|
+
['downharpoonsleftright', 'harpoons.blbr'],
|
|
420
|
+
['downrightcurvedarrow', 'arrow.b.curve'],
|
|
421
|
+
['downuparrows', 'arrows.bt'],
|
|
422
|
+
['downupharpoonsleftright', 'harpoons.bltr'],
|
|
423
|
+
['downwhitearrow', 'arrow.b.stroked'],
|
|
424
|
+
['downzigzagarrow', 'arrow.zigzag'],
|
|
425
|
+
['dprime', 'prime.double'],
|
|
426
|
+
['dualmap', 'multimap.double'],
|
|
427
|
+
['eighthnote', 'note.eighth.alt'],
|
|
428
|
+
['ell', 'ell'],
|
|
429
|
+
['emptysetoarr', 'emptyset.arrow.r'],
|
|
430
|
+
['emptysetoarrl', 'emptyset.arrow.l'],
|
|
431
|
+
['emptysetobar', 'emptyset.bar'],
|
|
432
|
+
['emptysetocirc', 'emptyset.circle'],
|
|
433
|
+
['eparsl', 'parallel.slanted.eq'],
|
|
456
434
|
['eqcolon', 'eq.colon'],
|
|
457
|
-
// \usepackage{mathtools} defines \eqdef
|
|
458
|
-
// https://tex.stackexchange.com/questions/28836/typesetting-the-define-equals-symbol
|
|
459
|
-
['eqdef', 'eq.def'],
|
|
460
|
-
['triangleq', 'eq.delta'],
|
|
461
|
-
['veeeq', 'eq.equi'],
|
|
462
|
-
['wedgeq', 'eq.est'],
|
|
435
|
+
['eqdef', 'eq.def'], // \usepackage{mathtools} defines \eqdef
|
|
463
436
|
['eqgtr', 'eq.gt'],
|
|
464
437
|
['eqless', 'eq.lt'],
|
|
465
|
-
['
|
|
466
|
-
['
|
|
467
|
-
['
|
|
468
|
-
['questeq', 'eq.quest'],
|
|
469
|
-
['curlyeqsucc', 'eq.succ'],
|
|
438
|
+
['eqsim', 'minus.tilde'],
|
|
439
|
+
['equal', 'eq'],
|
|
440
|
+
['equalparallel', 'parallel.eq'],
|
|
470
441
|
['equiv', 'eq.triple'],
|
|
471
442
|
['Equiv', 'eq.quad'],
|
|
472
|
-
['
|
|
473
|
-
['
|
|
474
|
-
['
|
|
475
|
-
['
|
|
476
|
-
['
|
|
443
|
+
['equivVert', 'parallel.equiv'],
|
|
444
|
+
['eqvparsl', 'parallel.slanted.equiv'],
|
|
445
|
+
['errbarblackcircle', 'errorbar.circle.filled'],
|
|
446
|
+
['errbarblackdiamond', 'errorbar.diamond.filled'],
|
|
447
|
+
['errbarblacksquare', 'errorbar.square.filled'],
|
|
448
|
+
['errbarcircle', 'errorbar.circle.stroked'],
|
|
449
|
+
['errbardiamond', 'errorbar.diamond.stroked'],
|
|
450
|
+
['errbarsquare', 'errorbar.square.stroked'],
|
|
451
|
+
['euro', 'euro'],
|
|
452
|
+
['Exclam', 'excl.double'],
|
|
453
|
+
['exists', 'exists'],
|
|
454
|
+
['fallingdotseq', 'eq.dots.down'],
|
|
455
|
+
['fint', 'integral.slash'],
|
|
456
|
+
['flat', 'flat'],
|
|
457
|
+
['forall', 'forall'],
|
|
458
|
+
['fourvdots', 'fence.dotted'],
|
|
459
|
+
['fullouterjoin', 'join.l.r'],
|
|
477
460
|
['geq', 'gt.eq'],
|
|
478
|
-
['geqslant', 'gt.eq.slant'],
|
|
479
|
-
['gtreqless', 'gt.eq.lt'],
|
|
480
|
-
['ngeq', 'gt.eq.not'],
|
|
481
461
|
['geqq', 'gt.equiv'],
|
|
482
|
-
['
|
|
483
|
-
['
|
|
484
|
-
['
|
|
462
|
+
['geqslant', 'gt.eq.slant'],
|
|
463
|
+
['gg', 'gt.double'],
|
|
464
|
+
['ggg', 'gt.triple'],
|
|
465
|
+
['gggnest', 'gt.triple.nested'],
|
|
485
466
|
['gnapprox', 'gt.napprox'],
|
|
467
|
+
['gneq', 'gt.neq'],
|
|
486
468
|
['gneqq', 'gt.nequiv'],
|
|
487
|
-
['ngtr', 'gt.not'],
|
|
488
469
|
['gnsim', 'gt.ntilde'],
|
|
470
|
+
['greater', 'gt'],
|
|
471
|
+
['gtlpar', 'angle.spheric.rev'],
|
|
472
|
+
['gtrapprox', 'gt.approx'],
|
|
473
|
+
['gtrdot', 'gt.dot'],
|
|
474
|
+
['gtreqless', 'gt.eq.lt'],
|
|
475
|
+
['gtrless', 'gt.lt'],
|
|
489
476
|
['gtrsim', 'gt.tilde'],
|
|
490
|
-
['
|
|
491
|
-
['
|
|
492
|
-
['
|
|
493
|
-
['
|
|
494
|
-
['
|
|
495
|
-
['
|
|
496
|
-
['
|
|
497
|
-
['
|
|
498
|
-
['
|
|
499
|
-
['
|
|
500
|
-
['
|
|
501
|
-
['
|
|
502
|
-
['
|
|
503
|
-
['
|
|
504
|
-
['
|
|
505
|
-
['
|
|
506
|
-
['
|
|
507
|
-
['
|
|
508
|
-
['nlessgtr', 'lt.gt.not'],
|
|
509
|
-
['lneq', 'lt.neq'],
|
|
510
|
-
['lnapprox', 'lt.napprox'],
|
|
511
|
-
['lneqq', 'lt.nequiv'],
|
|
512
|
-
['nless', 'lt.not'],
|
|
513
|
-
['lnsim', 'lt.ntilde'],
|
|
514
|
-
['lesssim', 'lt.tilde'],
|
|
515
|
-
['nlesssim', 'lt.tilde.not'],
|
|
516
|
-
['vartriangleleft', 'lt.tri'],
|
|
517
|
-
['trianglelefteq', 'lt.tri.eq'],
|
|
518
|
-
['ntrianglelefteq', 'lt.tri.eq.not'],
|
|
519
|
-
['nvartriangleleft', 'lt.tri.not'],
|
|
520
|
-
['lll', 'lt.triple'],
|
|
521
|
-
['lllnest', 'lt.triple.nested'],
|
|
522
|
-
['approx', 'approx'],
|
|
523
|
-
['approxeq', 'approx.eq'],
|
|
524
|
-
['napprox', 'approx.not'],
|
|
525
|
-
['prec', 'prec'],
|
|
526
|
-
['precapprox', 'prec.approx'],
|
|
527
|
-
['preccurlyeq', 'prec.curly.eq'],
|
|
528
|
-
['npreccurlyeq', 'prec.curly.eq.not'],
|
|
529
|
-
['Prec', 'prec.double'],
|
|
530
|
-
['preceq', 'prec.eq'],
|
|
531
|
-
['preceqq', 'prec.equiv'],
|
|
532
|
-
['precnapprox', 'prec.napprox'],
|
|
533
|
-
['precneq', 'prec.neq'],
|
|
534
|
-
['precneqq', 'prec.nequiv'],
|
|
535
|
-
['nprec', 'prec.not'],
|
|
536
|
-
['precnsim', 'prec.ntilde'],
|
|
537
|
-
['precsim', 'prec.tilde'],
|
|
538
|
-
['succ', 'succ'],
|
|
539
|
-
['succapprox', 'succ.approx'],
|
|
540
|
-
['succcurlyeq', 'succ.curly.eq'],
|
|
541
|
-
['nsucccurlyeq', 'succ.curly.eq.not'],
|
|
542
|
-
['Succ', 'succ.double'],
|
|
543
|
-
['succeq', 'succ.eq'],
|
|
544
|
-
['succeqq', 'succ.equiv'],
|
|
545
|
-
['succnapprox', 'succ.napprox'],
|
|
546
|
-
['succneq', 'succ.neq'],
|
|
547
|
-
['succneqq', 'succ.nequiv'],
|
|
548
|
-
['nsucc', 'succ.not'],
|
|
549
|
-
['succnsim', 'succ.ntilde'],
|
|
550
|
-
['succsim', 'succ.tilde'],
|
|
551
|
-
['nequiv', 'equiv.not'],
|
|
552
|
-
['propto', 'prop'],
|
|
553
|
-
['origof', 'original'],
|
|
477
|
+
['heartsuit', 'suit.heart.stroked'],
|
|
478
|
+
['hknearrow', 'arrow.tr.hook'],
|
|
479
|
+
['hknwarrow', 'arrow.tl.hook'],
|
|
480
|
+
['hksearrow', 'arrow.br.hook'],
|
|
481
|
+
['hkswarrow', 'arrow.bl.hook'],
|
|
482
|
+
['hookleftarrow', 'arrow.l.hook'],
|
|
483
|
+
['hookrightarrow', 'arrow.r.hook'],
|
|
484
|
+
['horizbar', 'bar.h'],
|
|
485
|
+
['hourglass', 'hourglass.stroked'],
|
|
486
|
+
['hrectangle', 'rect.stroked.h'],
|
|
487
|
+
['hrectangleblack', 'rect.filled.h'],
|
|
488
|
+
['hslash', 'planck.reduce'],
|
|
489
|
+
['hzigzag', 'dash.wave.double'],
|
|
490
|
+
['iiiint', 'integral.quad'],
|
|
491
|
+
['iiint', 'integral.triple'],
|
|
492
|
+
['iinfin', 'infinity.incomplete'],
|
|
493
|
+
['iint', 'integral.double'],
|
|
494
|
+
['Im', 'Im'],
|
|
554
495
|
['imageof', 'image'],
|
|
555
|
-
['varnothing', 'emptyset'],
|
|
556
|
-
['emptysetoarr', 'emptyset.arrow.r'],
|
|
557
|
-
['emptysetoarrl', 'emptyset.arrow.l'],
|
|
558
|
-
['emptysetobar', 'emptyset.bar'],
|
|
559
|
-
['emptysetocirc', 'emptyset.circle'],
|
|
560
|
-
['revemptyset', 'emptyset.rev'],
|
|
561
|
-
['setminus', 'without'],
|
|
562
|
-
['complement', 'complement'],
|
|
563
496
|
['in', 'in'],
|
|
564
|
-
['
|
|
565
|
-
['ni', 'in.rev'],
|
|
566
|
-
['nni', 'in.rev.not'],
|
|
567
|
-
['smallni', 'in.rev.small'],
|
|
568
|
-
['smallin', 'in.small'],
|
|
569
|
-
['subset', 'subset'],
|
|
570
|
-
['subsetdot', 'subset.dot'],
|
|
571
|
-
['Subset', 'subset.double'],
|
|
572
|
-
['subseteq', 'subset.eq'],
|
|
573
|
-
['nsubseteq', 'subset.eq.not'],
|
|
574
|
-
['sqsubseteq', 'subset.eq.sq'],
|
|
575
|
-
['nsqsubseteq', 'subset.eq.sq.not'],
|
|
576
|
-
['subsetneq', 'subset.neq'],
|
|
577
|
-
['nsubset', 'subset.not'],
|
|
578
|
-
['sqsubset', 'subset.sq'],
|
|
579
|
-
['sqsubsetneq', 'subset.sq.neq'],
|
|
580
|
-
['supset', 'supset'],
|
|
581
|
-
['supsetdot', 'supset.dot'],
|
|
582
|
-
['Supset', 'supset.double'],
|
|
583
|
-
['supseteq', 'supset.eq'],
|
|
584
|
-
['nsupseteq', 'supset.eq.not'],
|
|
585
|
-
['sqsupseteq', 'supset.eq.sq'],
|
|
586
|
-
['nsqsupseteq', 'supset.eq.sq.not'],
|
|
587
|
-
['supsetneq', 'supset.neq'],
|
|
588
|
-
['nsupset', 'supset.not'],
|
|
589
|
-
['sqsupset', 'supset.sq'],
|
|
590
|
-
['sqsupsetneq', 'supset.sq.neq'],
|
|
591
|
-
['cup', 'union'],
|
|
592
|
-
['cupleftarrow', 'union.arrow'],
|
|
593
|
-
['bigcup', 'union.big'],
|
|
594
|
-
['cupdot', 'union.dot'],
|
|
595
|
-
['bigcupdot', 'union.dot.big'],
|
|
596
|
-
['Cup', 'union.double'],
|
|
597
|
-
['uminus', 'union.minus'],
|
|
598
|
-
['cupvee', 'union.or'],
|
|
599
|
-
['uplus', 'union.plus'],
|
|
600
|
-
['biguplus', 'union.plus.big'],
|
|
601
|
-
['sqcup', 'union.sq'],
|
|
602
|
-
['bigsqcup', 'union.sq.big'],
|
|
603
|
-
['Sqcup', 'union.sq.double'],
|
|
604
|
-
['cap', 'sect'],
|
|
605
|
-
['capwedge', 'sect.and'],
|
|
606
|
-
['bigcap', 'sect.big'],
|
|
607
|
-
['capdot', 'sect.dot'],
|
|
608
|
-
['Cap', 'sect.double'],
|
|
609
|
-
['sqcap', 'sect.sq'],
|
|
610
|
-
['bigsqcap', 'sect.sq.big'],
|
|
611
|
-
['Sqcap', 'sect.sq.double'],
|
|
497
|
+
['increment', 'laplace'],
|
|
612
498
|
['infty', 'infinity'],
|
|
613
|
-
['nvinfty', 'infinity.bar'],
|
|
614
|
-
['iinfin', 'infinity.incomplete'],
|
|
615
|
-
['tieinfty', 'infinity.tie'],
|
|
616
|
-
['partial', 'diff'],
|
|
617
|
-
['nabla', 'gradient'],
|
|
618
|
-
['sum', 'sum'],
|
|
619
|
-
['sumint', 'sum.integral'],
|
|
620
|
-
['prod', 'product'],
|
|
621
|
-
['coprod', 'product.co'],
|
|
622
499
|
['int', 'integral'],
|
|
623
|
-
['intlarhk', 'integral.arrow.hook'],
|
|
624
|
-
['awint', 'integral.ccw'],
|
|
625
|
-
['oint', 'integral.cont'],
|
|
626
|
-
['ointctrclockwise', 'integral.cont.ccw'],
|
|
627
|
-
['varointclockwise', 'integral.cont.cw'],
|
|
628
|
-
['intclockwise', 'integral.cw'],
|
|
629
500
|
['intbar', 'integral.dash'],
|
|
630
501
|
['intBar', 'integral.dash.double'],
|
|
631
|
-
['
|
|
632
|
-
['
|
|
633
|
-
['intcap', 'integral.sect'],
|
|
634
|
-
['fint', 'integral.slash'],
|
|
635
|
-
['sqint', 'integral.square'],
|
|
636
|
-
['oiint', 'integral.surf'],
|
|
637
|
-
['intx', 'integral.times'],
|
|
638
|
-
['iiint', 'integral.triple'],
|
|
502
|
+
['intcap', 'integral.inter'],
|
|
503
|
+
['intclockwise', 'integral.cw'],
|
|
639
504
|
['intcup', 'integral.union'],
|
|
640
|
-
['
|
|
641
|
-
['
|
|
642
|
-
['
|
|
643
|
-
['exists', 'exists'],
|
|
644
|
-
['nexists', 'exists.not'],
|
|
645
|
-
['top', 'top'],
|
|
646
|
-
['bot', 'bot'],
|
|
647
|
-
['neg', 'not'],
|
|
648
|
-
['wedge', 'and'],
|
|
649
|
-
['bigwedge', 'and.big'],
|
|
650
|
-
['curlywedge', 'and.curly'],
|
|
651
|
-
['wedgedot', 'and.dot'],
|
|
652
|
-
['Wedge', 'and.double'],
|
|
653
|
-
['vee', 'or'],
|
|
654
|
-
['bigvee', 'or.big'],
|
|
655
|
-
['curlyvee', 'or.curly'],
|
|
656
|
-
['veedot', 'or.dot'],
|
|
657
|
-
['Vee', 'or.double'],
|
|
658
|
-
['models', 'models'],
|
|
659
|
-
['Vdash', 'forces'],
|
|
660
|
-
['nVdash', 'forces.not'],
|
|
661
|
-
['therefore', 'therefore'],
|
|
662
|
-
['because', 'because'],
|
|
663
|
-
['QED', 'qed'],
|
|
664
|
-
['vysmwhtcircle', 'compose'],
|
|
665
|
-
['multimap', 'multimap'],
|
|
666
|
-
['dualmap', 'multimap.double'],
|
|
667
|
-
['tplus', 'tiny'],
|
|
668
|
-
['tminus', 'miny'],
|
|
669
|
-
['mid', 'divides'],
|
|
670
|
-
['nmid', 'divides.not'],
|
|
671
|
-
['wr', 'wreath'],
|
|
672
|
-
['parallel', 'parallel'],
|
|
673
|
-
['nhpar', 'parallel.struck'],
|
|
674
|
-
['circledparallel', 'parallel.circle'],
|
|
675
|
-
['equalparallel', 'parallel.eq'],
|
|
676
|
-
['equivVert', 'parallel.equiv'],
|
|
677
|
-
['nparallel', 'parallel.not'],
|
|
678
|
-
['eparsl', 'parallel.slanted.eq'],
|
|
679
|
-
['smeparsl', 'parallel.slanted.eq.tilde'],
|
|
680
|
-
['eqvparsl', 'parallel.slanted.equiv'],
|
|
681
|
-
['parsim', 'parallel.tilde'],
|
|
682
|
-
['perp', 'perp'],
|
|
683
|
-
['operp', 'perp.circle'],
|
|
684
|
-
['diameter', 'diameter'],
|
|
505
|
+
['interleave', 'interleave'],
|
|
506
|
+
['intlarhk', 'integral.arrow.hook'],
|
|
507
|
+
['intx', 'integral.times'],
|
|
685
508
|
['Join', 'join'],
|
|
686
|
-
['
|
|
509
|
+
['langle', 'angle.l'],
|
|
510
|
+
['lAngle', 'angle.l.double'],
|
|
511
|
+
['langledot', 'angle.l.dot'],
|
|
512
|
+
['lat', 'lat'],
|
|
513
|
+
['late', 'lat.eq'],
|
|
514
|
+
['lbrace', 'brace.l'],
|
|
515
|
+
['lBrace', 'brace.l.double'],
|
|
516
|
+
['lbrack', 'bracket.l'],
|
|
517
|
+
['lBrack', 'bracket.l.double'],
|
|
518
|
+
['lbrbrak', 'shell.l'],
|
|
519
|
+
['Lbrbrak', 'shell.l.double'],
|
|
520
|
+
['lceil', 'ceil.l'],
|
|
521
|
+
['lcurvyangle', 'angle.l.curly'],
|
|
522
|
+
['leftarrow', 'arrow.l'],
|
|
523
|
+
['Leftarrow', 'arrow.l.double'],
|
|
524
|
+
['leftarrowtail', 'arrow.l.tail'],
|
|
525
|
+
['leftdasharrow', 'arrow.l.dashed'],
|
|
526
|
+
['leftdotarrow', 'arrow.l.dotted'],
|
|
527
|
+
['leftdowncurvedarrow', 'arrow.l.curve'],
|
|
528
|
+
['leftharpoondown', 'harpoon.lb'],
|
|
529
|
+
['leftharpoondownbar', 'harpoon.lb.bar'],
|
|
530
|
+
['leftharpoonsupdown', 'harpoons.ltlb'],
|
|
531
|
+
['leftharpoonup', 'harpoon.lt'],
|
|
532
|
+
['leftharpoonupbar', 'harpoon.lt.bar'],
|
|
533
|
+
['leftleftarrows', 'arrows.ll'],
|
|
687
534
|
['leftouterjoin', 'join.l'],
|
|
688
|
-
['
|
|
689
|
-
['
|
|
690
|
-
['
|
|
691
|
-
['
|
|
692
|
-
['
|
|
693
|
-
['
|
|
694
|
-
['
|
|
695
|
-
['
|
|
696
|
-
['
|
|
697
|
-
['
|
|
698
|
-
['
|
|
699
|
-
['
|
|
700
|
-
['
|
|
701
|
-
['
|
|
702
|
-
['
|
|
703
|
-
['
|
|
704
|
-
['
|
|
705
|
-
['
|
|
706
|
-
['
|
|
707
|
-
['
|
|
708
|
-
['
|
|
709
|
-
['
|
|
710
|
-
['
|
|
711
|
-
['
|
|
712
|
-
['
|
|
713
|
-
['
|
|
714
|
-
['mdlgblkcircle', 'circle.filled'],
|
|
715
|
-
['mdsmblkcircle', 'circle.filled.tiny'],
|
|
716
|
-
['vysmblkcircle', 'circle.filled.small'],
|
|
535
|
+
['leftrightarrow', 'arrow.l.r'],
|
|
536
|
+
['Leftrightarrow', 'arrow.l.r.double'],
|
|
537
|
+
['leftrightarrows', 'arrows.lr'],
|
|
538
|
+
['leftrightharpoondowndown', 'harpoon.lb.rb'],
|
|
539
|
+
['leftrightharpoondownup', 'harpoon.lb.rt'],
|
|
540
|
+
['leftrightharpoons', 'harpoons.ltrb'],
|
|
541
|
+
['leftrightharpoonsdown', 'harpoons.lbrb'],
|
|
542
|
+
['leftrightharpoonsup', 'harpoons.ltrt'],
|
|
543
|
+
['leftrightharpoonupdown', 'harpoon.lt.rb'],
|
|
544
|
+
['leftrightharpoonupup', 'harpoon.lt.rt'],
|
|
545
|
+
['leftrightsquigarrow', 'arrow.l.r.wave'],
|
|
546
|
+
['leftsquigarrow', 'arrow.l.squiggly'],
|
|
547
|
+
['leftthreearrows', 'arrows.lll'],
|
|
548
|
+
['leftthreetimes', 'times.three.l'],
|
|
549
|
+
['leftwavearrow', 'arrow.l.wave'],
|
|
550
|
+
['leftwhitearrow', 'arrow.l.stroked'],
|
|
551
|
+
['leq', 'lt.eq'],
|
|
552
|
+
['leqq', 'lt.equiv'],
|
|
553
|
+
['leqslant', 'lt.eq.slant'],
|
|
554
|
+
['less', 'lt'],
|
|
555
|
+
['lessapprox', 'lt.approx'],
|
|
556
|
+
['lessdot', 'lt.dot'],
|
|
557
|
+
['lesseqgtr', 'lt.eq.gt'],
|
|
558
|
+
['lessgtr', 'lt.gt'],
|
|
559
|
+
['lesssim', 'lt.tilde'],
|
|
560
|
+
['lfloor', 'floor.l'],
|
|
717
561
|
['lgblkcircle', 'circle.filled.big'],
|
|
718
|
-
['dottedcircle', 'circle.dotted'],
|
|
719
|
-
['circledcirc', 'circle.nested'],
|
|
720
|
-
['whthorzoval', 'ellipse.stroked.h'],
|
|
721
|
-
['whtvertoval', 'ellipse.stroked.v'],
|
|
722
|
-
['blkhorzoval', 'ellipse.filled.h'],
|
|
723
|
-
['blkvertoval', 'ellipse.filled.v'],
|
|
724
|
-
['bigtriangleup', 'triangle.stroked.t'],
|
|
725
|
-
['bigtriangledown', 'triangle.stroked.b'],
|
|
726
|
-
['triangleright', 'triangle.stroked.r'],
|
|
727
|
-
['triangleleft', 'triangle.stroked.l'],
|
|
728
|
-
['lltriangle', 'triangle.stroked.bl'],
|
|
729
|
-
['lrtriangle', 'triangle.stroked.br'],
|
|
730
|
-
['ultriangle', 'triangle.stroked.tl'],
|
|
731
|
-
['urtriangle', 'triangle.stroked.tr'],
|
|
732
|
-
['vartriangle', 'triangle.stroked.small.t'],
|
|
733
|
-
['triangledown', 'triangle.stroked.small.b'],
|
|
734
|
-
['smalltriangleright', 'triangle.stroked.small.r'],
|
|
735
|
-
['smalltriangleleft', 'triangle.stroked.small.l'],
|
|
736
|
-
['whiteinwhitetriangle', 'triangle.stroked.nested'],
|
|
737
|
-
['trianglecdot', 'triangle.stroked.dot'],
|
|
738
|
-
['bigblacktriangleup', 'triangle.filled.t'],
|
|
739
|
-
['bigblacktriangledown', 'triangle.filled.b'],
|
|
740
|
-
['blacktriangleright', 'triangle.filled.r'],
|
|
741
|
-
['blacktriangleleft', 'triangle.filled.l'],
|
|
742
|
-
['llblacktriangle', 'triangle.filled.bl'],
|
|
743
|
-
['lrblacktriangle', 'triangle.filled.br'],
|
|
744
|
-
['ulblacktriangle', 'triangle.filled.tl'],
|
|
745
|
-
['urblacktriangle', 'triangle.filled.tr'],
|
|
746
|
-
['blacktriangle', 'triangle.filled.small.t'],
|
|
747
|
-
['blacktriangledown', 'triangle.filled.small.b'],
|
|
748
|
-
['smallblacktriangleright', 'triangle.filled.small.r'],
|
|
749
|
-
['smallblacktriangleleft', 'triangle.filled.small.l'],
|
|
750
|
-
['mdlgwhtsquare', 'square.stroked'],
|
|
751
|
-
['smwhtsquare', 'square.stroked.tiny'],
|
|
752
|
-
['mdsmwhtsquare', 'square.stroked.small'],
|
|
753
|
-
['mdwhtsquare', 'square.stroked.medium'],
|
|
754
|
-
['lgwhtsquare', 'square.stroked.big'],
|
|
755
|
-
['dottedsquare', 'square.stroked.dotted'],
|
|
756
|
-
['squoval', 'square.stroked.rounded'],
|
|
757
|
-
['mdlgblksquare', 'square.filled'],
|
|
758
|
-
['smblksquare', 'square.filled.tiny'],
|
|
759
|
-
['mdsmblksquare', 'square.filled.small'],
|
|
760
|
-
['mdblksquare', 'square.filled.medium'],
|
|
761
562
|
['lgblksquare', 'square.filled.big'],
|
|
762
|
-
['
|
|
763
|
-
['
|
|
764
|
-
['
|
|
765
|
-
['
|
|
766
|
-
['
|
|
767
|
-
['
|
|
768
|
-
['
|
|
769
|
-
['
|
|
770
|
-
['
|
|
771
|
-
['
|
|
772
|
-
['
|
|
773
|
-
['
|
|
774
|
-
['
|
|
775
|
-
['
|
|
776
|
-
['
|
|
777
|
-
['
|
|
778
|
-
['
|
|
779
|
-
['
|
|
780
|
-
['
|
|
781
|
-
['
|
|
782
|
-
['
|
|
783
|
-
['parallelogram', 'parallelogram.stroked'],
|
|
784
|
-
['parallelogramblack', 'parallelogram.filled'],
|
|
785
|
-
['star', 'star.op'],
|
|
786
|
-
['bigwhitestar', 'star.stroked'],
|
|
787
|
-
['bigstar', 'star.filled'],
|
|
788
|
-
['rightarrow', 'arrow.r'],
|
|
563
|
+
['lgwhtcircle', 'circle.stroked.big'],
|
|
564
|
+
['lgwhtsquare', 'square.stroked.big'],
|
|
565
|
+
['ll', 'lt.double'],
|
|
566
|
+
['llblacktriangle', 'triangle.filled.bl'],
|
|
567
|
+
['LLeftarrow', 'arrow.l.quad'],
|
|
568
|
+
['Lleftarrow', 'arrow.l.triple'],
|
|
569
|
+
['lll', 'lt.triple'],
|
|
570
|
+
['lllnest', 'lt.triple.nested'],
|
|
571
|
+
['lltriangle', 'triangle.stroked.bl'],
|
|
572
|
+
['lnapprox', 'lt.napprox'],
|
|
573
|
+
['lneq', 'lt.neq'],
|
|
574
|
+
['lneqq', 'lt.nequiv'],
|
|
575
|
+
['lnsim', 'lt.ntilde'],
|
|
576
|
+
['longdashv', 'tack.l.long'],
|
|
577
|
+
['Longleftarrow', 'arrow.l.double.long'],
|
|
578
|
+
['longleftarrow', 'arrow.l.long'],
|
|
579
|
+
['Longleftrightarrow', 'arrow.l.r.double.long'],
|
|
580
|
+
['longleftrightarrow', 'arrow.l.r.long'],
|
|
581
|
+
['longleftsquigarrow', 'arrow.l.long.squiggly'],
|
|
582
|
+
['Longmapsfrom', 'arrow.l.double.long.bar'],
|
|
583
|
+
['longmapsfrom', 'arrow.l.long.bar'],
|
|
789
584
|
['longmapsto', 'arrow.r.long.bar'],
|
|
790
|
-
['mapsto', 'arrow.r.bar'],
|
|
791
|
-
['rightdowncurvedarrow', 'arrow.r.curve'],
|
|
792
|
-
['rightdasharrow', 'arrow.r.dashed'],
|
|
793
|
-
['rightdotarrow', 'arrow.r.dotted'],
|
|
794
|
-
['Rightarrow', 'arrow.r.double'],
|
|
795
|
-
['Mapsto', 'arrow.r.double.bar'],
|
|
796
|
-
['Longrightarrow', 'arrow.r.double.long'],
|
|
797
585
|
['Longmapsto', 'arrow.r.double.long.bar'],
|
|
798
|
-
['
|
|
799
|
-
['hookrightarrow', 'arrow.r.hook'],
|
|
586
|
+
['Longrightarrow', 'arrow.r.double.long'],
|
|
800
587
|
['longrightarrow', 'arrow.r.long'],
|
|
801
588
|
['longrightsquigarrow', 'arrow.r.long.squiggly'],
|
|
589
|
+
['looparrowleft', 'arrow.l.loop'],
|
|
802
590
|
['looparrowright', 'arrow.r.loop'],
|
|
803
|
-
['
|
|
804
|
-
['
|
|
805
|
-
['
|
|
806
|
-
['
|
|
807
|
-
['
|
|
808
|
-
['
|
|
809
|
-
['
|
|
810
|
-
['
|
|
811
|
-
['
|
|
812
|
-
['twoheadrightarrow', 'arrow.r.twohead'],
|
|
813
|
-
['rightwavearrow', 'arrow.r.wave'],
|
|
814
|
-
['leftarrow', 'arrow.l'],
|
|
591
|
+
['lparen', 'paren.l'],
|
|
592
|
+
['lParen', 'paren.l.double'],
|
|
593
|
+
['lrblacktriangle', 'triangle.filled.br'],
|
|
594
|
+
['lrtriangle', 'triangle.stroked.br'],
|
|
595
|
+
['ltimes', 'times.l'],
|
|
596
|
+
['lvzigzag', 'fence.l'],
|
|
597
|
+
['Lvzigzag', 'fence.l.double'],
|
|
598
|
+
['maltese', 'maltese'],
|
|
599
|
+
['mapsdown', 'arrow.b.bar'],
|
|
815
600
|
['mapsfrom', 'arrow.l.bar'],
|
|
816
|
-
['leftdowncurvedarrow', 'arrow.l.curve'],
|
|
817
|
-
['leftdasharrow', 'arrow.l.dashed'],
|
|
818
|
-
['leftdotarrow', 'arrow.l.dotted'],
|
|
819
|
-
['Leftarrow', 'arrow.l.double'],
|
|
820
601
|
['Mapsfrom', 'arrow.l.double.bar'],
|
|
821
|
-
['
|
|
822
|
-
['
|
|
823
|
-
['
|
|
824
|
-
['
|
|
825
|
-
['
|
|
826
|
-
['
|
|
827
|
-
['
|
|
828
|
-
['
|
|
829
|
-
['
|
|
830
|
-
['
|
|
831
|
-
['
|
|
832
|
-
['
|
|
833
|
-
['
|
|
834
|
-
['
|
|
835
|
-
['
|
|
836
|
-
['
|
|
837
|
-
['
|
|
838
|
-
['
|
|
839
|
-
['
|
|
602
|
+
['mapsto', 'arrow.r.bar'],
|
|
603
|
+
['Mapsto', 'arrow.r.double.bar'],
|
|
604
|
+
['mapsup', 'arrow.t.bar'],
|
|
605
|
+
['mathampersand', 'amp'],
|
|
606
|
+
['mathatsign', 'at'],
|
|
607
|
+
['mathcolon', 'colon'],
|
|
608
|
+
['mathcomma', 'comma'],
|
|
609
|
+
['mathdollar', 'dollar'],
|
|
610
|
+
['mathexclam', 'excl'],
|
|
611
|
+
// ['mathhyphen', 'hyph'], // \mathhyphen is not defined in standard amsmath package
|
|
612
|
+
['mathoctothorpe', 'hash'],
|
|
613
|
+
['mathparagraph', 'pilcrow'],
|
|
614
|
+
['mathpercent', 'percent'],
|
|
615
|
+
['mathperiod', 'dot.basic'],
|
|
616
|
+
['mathplus', 'plus'],
|
|
617
|
+
['mathquestion', 'quest'],
|
|
618
|
+
['mathratio', 'ratio'],
|
|
619
|
+
['mathsection', 'section'],
|
|
620
|
+
['mathsemicolon', 'semi'],
|
|
621
|
+
['mathslash', 'slash'],
|
|
622
|
+
['mathsterling', 'pound'],
|
|
623
|
+
['mathyen', 'yen'],
|
|
624
|
+
['mdblkdiamond', 'diamond.filled.medium'],
|
|
625
|
+
['mdblklozenge', 'lozenge.filled.medium'],
|
|
626
|
+
['mdblksquare', 'square.filled.medium'],
|
|
627
|
+
['mdlgblkcircle', 'circle.filled'],
|
|
628
|
+
['mdlgblkdiamond', 'diamond.filled'],
|
|
629
|
+
['mdlgblklozenge', 'lozenge.filled'],
|
|
630
|
+
['mdlgblksquare', 'square.filled'],
|
|
631
|
+
['mdlgwhtcircle', 'circle.stroked'],
|
|
632
|
+
['mdlgwhtdiamond', 'diamond.stroked'],
|
|
633
|
+
['mdlgwhtlozenge', 'lozenge.stroked'],
|
|
634
|
+
['mdlgwhtsquare', 'square.stroked'],
|
|
635
|
+
['mdsmblkcircle', 'circle.filled.tiny'],
|
|
636
|
+
['mdsmblksquare', 'square.filled.small'],
|
|
637
|
+
['mdsmwhtcircle', 'circle.stroked.small'],
|
|
638
|
+
['mdsmwhtsquare', 'square.stroked.small'],
|
|
639
|
+
['mdwhtdiamond', 'diamond.stroked.medium'],
|
|
640
|
+
['mdwhtlozenge', 'lozenge.stroked.medium'],
|
|
641
|
+
['mdwhtsquare', 'square.stroked.medium'],
|
|
642
|
+
['measeq', 'eq.m'],
|
|
643
|
+
['measuredangle', 'angle.arc'],
|
|
644
|
+
['measuredangleleft', 'angle.arc.rev'],
|
|
645
|
+
['measuredrightangle', 'angle.right.arc'],
|
|
646
|
+
['mho', 'Omega.inv'],
|
|
647
|
+
['mid', 'divides'],
|
|
648
|
+
['minus', 'minus'],
|
|
649
|
+
['models', 'models'],
|
|
650
|
+
['mp', 'minus.plus'],
|
|
651
|
+
['multimap', 'multimap'],
|
|
652
|
+
/* ['mupAlpha', 'Alpha'],
|
|
653
|
+
['mupalpha', 'alpha'],
|
|
654
|
+
['mupBeta', 'Beta'],
|
|
655
|
+
['mupbeta', 'beta'],
|
|
656
|
+
['mupChi', 'Chi'],
|
|
657
|
+
['mupchi', 'chi'],
|
|
658
|
+
['mupDelta', 'Delta'],
|
|
659
|
+
['mupdelta', 'delta'],
|
|
660
|
+
['mupEpsilon', 'Epsilon'],
|
|
661
|
+
['mupepsilon', 'epsilon.alt'],
|
|
662
|
+
['mupEta', 'Eta'],
|
|
663
|
+
['mupeta', 'eta'],
|
|
664
|
+
['mupGamma', 'Gamma'],
|
|
665
|
+
['mupgamma', 'gamma'],
|
|
666
|
+
['mupIota', 'Iota'],
|
|
667
|
+
['mupiota', 'iota'],
|
|
668
|
+
['mupKappa', 'Kappa'],
|
|
669
|
+
['mupkappa', 'kappa'],
|
|
670
|
+
['mupLambda', 'Lambda'],
|
|
671
|
+
['muplambda', 'lambda'],
|
|
672
|
+
['mupMu', 'Mu'],
|
|
673
|
+
['mupmu', 'mu'],
|
|
674
|
+
['mupNu', 'Nu'],
|
|
675
|
+
['mupnu', 'nu'],
|
|
676
|
+
['mupOmega', 'Omega'],
|
|
677
|
+
['mupomega', 'omega'],
|
|
678
|
+
['mupOmicron', 'Omicron'],
|
|
679
|
+
['mupomicron', 'omicron'],
|
|
680
|
+
['mupPhi', 'Phi'],
|
|
681
|
+
['mupphi', 'phi.alt'],
|
|
682
|
+
['mupPi', 'Pi'],
|
|
683
|
+
['muppi', 'pi'],
|
|
684
|
+
['mupPsi', 'Psi'],
|
|
685
|
+
['muppsi', 'psi'],
|
|
686
|
+
['mupRho', 'Rho'],
|
|
687
|
+
['muprho', 'rho'],
|
|
688
|
+
['mupSigma', 'Sigma'],
|
|
689
|
+
['mupsigma', 'sigma'],
|
|
690
|
+
['mupTau', 'Tau'],
|
|
691
|
+
['muptau', 'tau'],
|
|
692
|
+
['mupTheta', 'Theta'],
|
|
693
|
+
['muptheta', 'theta'],
|
|
694
|
+
['mupUpsilon', 'Upsilon'],
|
|
695
|
+
['mupupsilon', 'upsilon'],
|
|
696
|
+
['mupvarepsilon', 'epsilon'],
|
|
697
|
+
['mupvarkappa', 'kappa.alt'],
|
|
698
|
+
['mupvarphi', 'phi'],
|
|
699
|
+
['mupvarpi', 'pi.alt'],
|
|
700
|
+
['mupvarrho', 'rho.alt'],
|
|
701
|
+
['mupvarsigma', 'sigma.alt'],
|
|
702
|
+
['mupvartheta', 'theta.alt'],
|
|
703
|
+
['mupXi', 'Xi'],
|
|
704
|
+
['mupxi', 'xi'],
|
|
705
|
+
['mupZeta', 'Zeta'],
|
|
706
|
+
['mupzeta', 'zeta'], */
|
|
707
|
+
['nabla', 'gradient'],
|
|
708
|
+
['napprox', 'approx.not'],
|
|
709
|
+
['nasymp', 'asymp.not'],
|
|
710
|
+
['natural', 'natural'],
|
|
711
|
+
['ncong', 'tilde.equiv.not'],
|
|
712
|
+
['ne', 'eq.not'],
|
|
713
|
+
['nearrow', 'arrow.tr'],
|
|
714
|
+
['Nearrow', 'arrow.tr.double'],
|
|
715
|
+
['neg', 'not'],
|
|
716
|
+
['nequiv', 'equiv.not'], // or eq.triple.not
|
|
717
|
+
['neswarrow', 'arrow.tr.bl'],
|
|
718
|
+
['nexists', 'exists.not'],
|
|
719
|
+
['ngeq', 'gt.eq.not'],
|
|
720
|
+
['ngtr', 'gt.not'],
|
|
721
|
+
['ngtrless', 'gt.lt.not'],
|
|
722
|
+
['ngtrsim', 'gt.tilde.not'],
|
|
723
|
+
['nhpar', 'parallel.struck'],
|
|
724
|
+
['nhVvert', 'interleave.struck'],
|
|
725
|
+
['ni', 'in.rev'],
|
|
726
|
+
['nLeftarrow', 'arrow.l.double.not'],
|
|
727
|
+
['nleftarrow', 'arrow.l.not'],
|
|
728
|
+
['nLeftrightarrow', 'arrow.l.r.double.not'],
|
|
729
|
+
['nleftrightarrow', 'arrow.l.r.not'],
|
|
730
|
+
['nleq', 'lt.eq.not'],
|
|
731
|
+
['nless', 'lt.not'],
|
|
732
|
+
['nlessgtr', 'lt.gt.not'],
|
|
733
|
+
['nlesssim', 'lt.tilde.not'],
|
|
734
|
+
['nmid', 'divides.not'],
|
|
735
|
+
['nni', 'in.rev.not'],
|
|
736
|
+
['notin', 'in.not'],
|
|
737
|
+
['nparallel', 'parallel.not'],
|
|
738
|
+
['nprec', 'prec.not'],
|
|
739
|
+
['npreccurlyeq', 'prec.curly.eq.not'],
|
|
740
|
+
['nRightarrow', 'arrow.r.double.not'],
|
|
741
|
+
['nrightarrow', 'arrow.r.not'],
|
|
742
|
+
['nsim', 'tilde.not'],
|
|
743
|
+
['nsimeq', 'tilde.eq.not'],
|
|
744
|
+
['nsqsubseteq', 'subset.eq.sq.not'],
|
|
745
|
+
['nsqsupseteq', 'supset.eq.sq.not'],
|
|
746
|
+
['nsubset', 'subset.not'],
|
|
747
|
+
['nsubseteq', 'subset.eq.not'],
|
|
748
|
+
['nsucc', 'succ.not'],
|
|
749
|
+
['nsucccurlyeq', 'succ.curly.eq.not'],
|
|
750
|
+
['nsupset', 'supset.not'],
|
|
751
|
+
['nsupseteq', 'supset.eq.not'],
|
|
752
|
+
['ntrianglelefteq', 'lt.tri.eq.not'],
|
|
753
|
+
['ntrianglerighteq', 'gt.tri.eq.not'],
|
|
754
|
+
['nvartriangleleft', 'lt.tri.not'],
|
|
755
|
+
['nvartriangleright', 'gt.tri.not'],
|
|
756
|
+
['nVdash', 'forces.not'],
|
|
757
|
+
['nvdash', 'tack.r.not'],
|
|
758
|
+
['nvDash', 'tack.r.double.not'],
|
|
759
|
+
['nvinfty', 'infinity.bar'],
|
|
760
|
+
['nwarrow', 'arrow.tl'],
|
|
761
|
+
['Nwarrow', 'arrow.tl.double'],
|
|
762
|
+
['nwsearrow', 'arrow.tl.br'],
|
|
763
|
+
['obrbrak', 'shell.t'],
|
|
764
|
+
['obslash', 'backslash.circle'],
|
|
765
|
+
['odiv', 'div.circle'],
|
|
766
|
+
['odot', 'dot.circle'],
|
|
767
|
+
['ogreaterthan', 'gt.circle'],
|
|
768
|
+
['oiiint', 'integral.vol'],
|
|
769
|
+
['oiint', 'integral.surf'],
|
|
770
|
+
['oint', 'integral.cont'],
|
|
771
|
+
['ointctrclockwise', 'integral.cont.ccw'],
|
|
772
|
+
['olessthan', 'lt.circle'],
|
|
773
|
+
['ominus', 'minus.circle'],
|
|
774
|
+
['operp', 'perp.circle'],
|
|
775
|
+
['oplus', 'plus.circle'],
|
|
776
|
+
['origof', 'original'],
|
|
777
|
+
['otimes', 'times.circle'],
|
|
778
|
+
// ['overbrace', 'brace.t'],
|
|
779
|
+
['overbracket', 'bracket.t'],
|
|
780
|
+
['overparen', 'paren.t'],
|
|
781
|
+
['parallel', 'parallel'],
|
|
782
|
+
['parallelogram', 'parallelogram.stroked'],
|
|
783
|
+
['parallelogramblack', 'parallelogram.filled'],
|
|
784
|
+
['parsim', 'parallel.tilde'],
|
|
785
|
+
['partial', 'diff'],
|
|
786
|
+
['pentagon', 'penta.stroked'],
|
|
787
|
+
['pentagonblack', 'penta.filled'],
|
|
788
|
+
['perp', 'perp'],
|
|
789
|
+
['Planckconst', 'planck'],
|
|
790
|
+
['pm', 'plus.minus'],
|
|
791
|
+
['prec', 'prec'],
|
|
792
|
+
['Prec', 'prec.double'],
|
|
793
|
+
['precapprox', 'prec.approx'],
|
|
794
|
+
['preccurlyeq', 'prec.curly.eq'],
|
|
795
|
+
['preceq', 'prec.eq'],
|
|
796
|
+
['preceqq', 'prec.equiv'],
|
|
797
|
+
['precnapprox', 'prec.napprox'],
|
|
798
|
+
['precneq', 'prec.neq'],
|
|
799
|
+
['precneqq', 'prec.nequiv'],
|
|
800
|
+
['precnsim', 'prec.ntilde'],
|
|
801
|
+
['precsim', 'prec.tilde'],
|
|
802
|
+
['prime', 'prime'],
|
|
803
|
+
['prod', 'product'],
|
|
804
|
+
['propto', 'prop'],
|
|
805
|
+
['QED', 'qed'],
|
|
806
|
+
['qprime', 'prime.quad'],
|
|
807
|
+
['quarternote', 'note.quarter.alt'],
|
|
808
|
+
['questeq', 'eq.quest'],
|
|
809
|
+
['Question', 'quest.double'],
|
|
810
|
+
['rangle', 'angle.r'],
|
|
811
|
+
['rAngle', 'angle.r.double'],
|
|
812
|
+
['rangledot', 'angle.r.dot'],
|
|
813
|
+
['rbrace', 'brace.r'],
|
|
814
|
+
['rBrace', 'brace.r.double'],
|
|
815
|
+
['rbrack', 'bracket.r'],
|
|
816
|
+
['rBrack', 'bracket.r.double'],
|
|
817
|
+
['rbrbrak', 'shell.r'],
|
|
818
|
+
['Rbrbrak', 'shell.r.double'],
|
|
819
|
+
['rceil', 'ceil.r'],
|
|
820
|
+
['rcurvyangle', 'angle.r.curly'],
|
|
821
|
+
['Re', 'Re'],
|
|
822
|
+
['revangle', 'angle.rev'],
|
|
823
|
+
['revemptyset', 'emptyset.rev'],
|
|
824
|
+
['revnmid', 'divides.not.rev'],
|
|
825
|
+
['rfloor', 'floor.r'],
|
|
826
|
+
['rightangle', 'angle.right'],
|
|
827
|
+
['rightanglemdot', 'angle.right.dot'],
|
|
828
|
+
['rightanglesqr', 'angle.right.sq'],
|
|
829
|
+
['rightarrow', 'arrow.r'],
|
|
830
|
+
['Rightarrow', 'arrow.r.double'],
|
|
831
|
+
['rightarrowbar', 'arrow.r.stop'],
|
|
832
|
+
['rightarrowonoplus', 'plus.circle.arrow'],
|
|
833
|
+
['rightarrowtail', 'arrow.r.tail'],
|
|
834
|
+
['rightdasharrow', 'arrow.r.dashed'],
|
|
835
|
+
['rightdotarrow', 'arrow.r.dotted'],
|
|
836
|
+
['rightdowncurvedarrow', 'arrow.r.curve'],
|
|
837
|
+
['rightharpoondown', 'harpoon.rb'],
|
|
838
|
+
['rightharpoondownbar', 'harpoon.rb.stop'],
|
|
839
|
+
['rightharpoonsupdown', 'harpoons.rtrb'],
|
|
840
|
+
['rightharpoonup', 'harpoon.rt'],
|
|
841
|
+
['rightharpoonupbar', 'harpoon.rt.stop'],
|
|
842
|
+
['rightleftarrows', 'arrows.rl'],
|
|
843
|
+
['rightleftharpoons', 'harpoons.rtlb'],
|
|
844
|
+
['rightleftharpoonsdown', 'harpoons.rblb'],
|
|
845
|
+
['rightleftharpoonsup', 'harpoons.rtlt'],
|
|
846
|
+
['rightouterjoin', 'join.r'],
|
|
847
|
+
['rightrightarrows', 'arrows.rr'],
|
|
848
|
+
['rightsquigarrow', 'arrow.r.squiggly'],
|
|
849
|
+
['rightthreearrows', 'arrows.rrr'],
|
|
850
|
+
['rightthreetimes', 'times.three.r'],
|
|
851
|
+
['rightwavearrow', 'arrow.r.wave'],
|
|
852
|
+
['rightwhitearrow', 'arrow.r.stroked'],
|
|
853
|
+
['risingdotseq', 'eq.dots.up'],
|
|
854
|
+
['rparen', 'paren.r'],
|
|
855
|
+
['rParen', 'paren.r.double'],
|
|
856
|
+
['RRightarrow', 'arrow.r.quad'],
|
|
857
|
+
['Rrightarrow', 'arrow.r.triple'],
|
|
858
|
+
['rsolbar', 'backslash.not'],
|
|
859
|
+
['rtimes', 'times.r'],
|
|
860
|
+
['rvzigzag', 'fence.r'],
|
|
861
|
+
['Rvzigzag', 'fence.r.double'],
|
|
862
|
+
['searrow', 'arrow.br'],
|
|
863
|
+
['Searrow', 'arrow.br.double'],
|
|
864
|
+
['setminus', 'without'],
|
|
865
|
+
['sharp', 'sharp'],
|
|
866
|
+
['shortdowntack', 'tack.b.short'],
|
|
867
|
+
['shortlefttack', 'tack.l.short'],
|
|
868
|
+
['shortuptack', 'tack.t.short'],
|
|
869
|
+
['sim', 'tilde.op'],
|
|
870
|
+
['sime', 'tilde.eq'],
|
|
871
|
+
['similarleftarrow', 'arrow.l.tilde'],
|
|
872
|
+
['similarrightarrow', 'arrow.r.tilde'],
|
|
873
|
+
['simneqq', 'tilde.nequiv'],
|
|
874
|
+
['smallblacktriangleleft', 'triangle.filled.small.l'],
|
|
875
|
+
['smallblacktriangleright', 'triangle.filled.small.r'],
|
|
876
|
+
['smallin', 'in.small'],
|
|
877
|
+
['smallni', 'in.rev.small'],
|
|
878
|
+
['smalltriangleleft', 'triangle.stroked.small.l'],
|
|
879
|
+
['smalltriangleright', 'triangle.stroked.small.r'],
|
|
880
|
+
['smashtimes', 'smash'],
|
|
881
|
+
['smblkcircle', 'bullet'],
|
|
882
|
+
['smblkdiamond', 'diamond.filled.small'],
|
|
883
|
+
['smblklozenge', 'lozenge.filled.small'],
|
|
884
|
+
['smblksquare', 'square.filled.tiny'],
|
|
885
|
+
['smeparsl', 'parallel.slanted.eq.tilde'],
|
|
886
|
+
['smt', 'smt'],
|
|
887
|
+
['smte', 'smt.eq'],
|
|
888
|
+
['smwhtdiamond', 'diamond.stroked.small'],
|
|
889
|
+
['smwhtlozenge', 'lozenge.stroked.small'],
|
|
890
|
+
['smwhtsquare', 'square.stroked.tiny'],
|
|
891
|
+
['spadesuit', 'suit.spade.filled'],
|
|
892
|
+
['sphericalangle', 'angle.spheric'],
|
|
893
|
+
['sphericalangleup', 'angle.spheric.top'],
|
|
894
|
+
['sqcap', 'inter.sq'],
|
|
895
|
+
['Sqcap', 'inter.sq.double'],
|
|
896
|
+
['sqcup', 'union.sq'],
|
|
897
|
+
['Sqcup', 'union.sq.double'],
|
|
898
|
+
['sqint', 'integral.square'],
|
|
899
|
+
['sqsubset', 'subset.sq'],
|
|
900
|
+
['sqsubseteq', 'subset.eq.sq'],
|
|
901
|
+
['sqsubsetneq', 'subset.sq.neq'],
|
|
902
|
+
['sqsupset', 'supset.sq'],
|
|
903
|
+
['sqsupseteq', 'supset.eq.sq'],
|
|
904
|
+
['sqsupsetneq', 'supset.sq.neq'],
|
|
905
|
+
['squoval', 'square.stroked.rounded'],
|
|
906
|
+
['sslash', 'slash.double'],
|
|
907
|
+
['star', 'star.op'],
|
|
908
|
+
['stareq', 'eq.star'],
|
|
909
|
+
['subset', 'subset'],
|
|
910
|
+
['Subset', 'subset.double'],
|
|
911
|
+
['subsetdot', 'subset.dot'],
|
|
912
|
+
['subseteq', 'subset.eq'],
|
|
913
|
+
['subsetneq', 'subset.neq'],
|
|
914
|
+
['succ', 'succ'],
|
|
915
|
+
['Succ', 'succ.double'],
|
|
916
|
+
['succapprox', 'succ.approx'],
|
|
917
|
+
['succcurlyeq', 'succ.curly.eq'],
|
|
918
|
+
['succeq', 'succ.eq'],
|
|
919
|
+
['succeqq', 'succ.equiv'],
|
|
920
|
+
['succnapprox', 'succ.napprox'],
|
|
921
|
+
['succneq', 'succ.neq'],
|
|
922
|
+
['succneqq', 'succ.nequiv'],
|
|
923
|
+
['succnsim', 'succ.ntilde'],
|
|
924
|
+
['succsim', 'succ.tilde'],
|
|
925
|
+
['sum', 'sum'],
|
|
926
|
+
['sumint', 'sum.integral'],
|
|
927
|
+
['supset', 'supset'],
|
|
928
|
+
['Supset', 'supset.double'],
|
|
929
|
+
['supsetdot', 'supset.dot'],
|
|
930
|
+
['supseteq', 'supset.eq'],
|
|
931
|
+
['supsetneq', 'supset.neq'],
|
|
932
|
+
['swarrow', 'arrow.bl'],
|
|
933
|
+
['Swarrow', 'arrow.bl.double'],
|
|
934
|
+
['therefore', 'therefore'],
|
|
935
|
+
['threedangle', 'angle.spatial'],
|
|
936
|
+
['threedotcolon', 'colon.tri.op'],
|
|
937
|
+
['tieinfty', 'infinity.tie'],
|
|
938
|
+
['times', 'times'],
|
|
939
|
+
['tminus', 'miny'],
|
|
940
|
+
['top', 'tack.b'],
|
|
941
|
+
['tplus', 'tiny'],
|
|
942
|
+
['trianglecdot', 'triangle.stroked.dot'],
|
|
943
|
+
['triangledown', 'triangle.stroked.small.b'],
|
|
944
|
+
['triangleleft', 'triangle.stroked.l'],
|
|
945
|
+
['trianglelefteq', 'lt.tri.eq'],
|
|
946
|
+
['triangleminus', 'minus.triangle'],
|
|
947
|
+
['triangleplus', 'plus.triangle'],
|
|
948
|
+
['triangleq', 'eq.delta'],
|
|
949
|
+
['triangleright', 'triangle.stroked.r'],
|
|
950
|
+
['trianglerighteq', 'gt.tri.eq'],
|
|
951
|
+
['triangletimes', 'times.triangle'],
|
|
952
|
+
['tripleplus', 'plus.triple'],
|
|
953
|
+
['trprime', 'prime.triple'],
|
|
954
|
+
['trslash', 'slash.triple'],
|
|
955
|
+
['twoheaddownarrow', 'arrow.b.twohead'],
|
|
956
|
+
['twoheadleftarrow', 'arrow.l.twohead'],
|
|
957
|
+
['twoheadmapsfrom', 'arrow.l.twohead.bar'],
|
|
958
|
+
['twoheadmapsto', 'arrow.r.twohead.bar'],
|
|
959
|
+
['twoheadrightarrow', 'arrow.r.twohead'],
|
|
960
|
+
['twoheaduparrow', 'arrow.t.twohead'],
|
|
961
|
+
['twonotes', 'note.eighth.beamed'],
|
|
962
|
+
['ubrbrak', 'shell.b'],
|
|
963
|
+
['ulblacktriangle', 'triangle.filled.tl'],
|
|
964
|
+
['ultriangle', 'triangle.stroked.tl'],
|
|
965
|
+
['uminus', 'union.minus'],
|
|
966
|
+
['underbrace', 'brace.b'],
|
|
967
|
+
['underbracket', 'bracket.b'],
|
|
968
|
+
['underparen', 'paren.b'],
|
|
969
|
+
['unicodecdots', 'dots.h.c'],
|
|
970
|
+
['unicodeellipsis', 'dots.h'],
|
|
971
|
+
['upand', 'amp.inv'],
|
|
840
972
|
['uparrow', 'arrow.t'],
|
|
841
|
-
['mapsup', 'arrow.t.bar'],
|
|
842
|
-
['uprightcurvearrow', 'arrow.t.curve'],
|
|
843
|
-
['updasharrow', 'arrow.t.dashed'],
|
|
844
973
|
['Uparrow', 'arrow.t.double'],
|
|
845
|
-
['
|
|
846
|
-
['baruparrow', 'arrow.t.stop'],
|
|
847
|
-
['upwhitearrow', 'arrow.t.stroked'],
|
|
848
|
-
['Uuparrow', 'arrow.t.triple'],
|
|
849
|
-
['twoheaduparrow', 'arrow.t.twohead'],
|
|
850
|
-
['downarrow', 'arrow.b'],
|
|
851
|
-
['mapsdown', 'arrow.b.bar'],
|
|
852
|
-
['downrightcurvedarrow', 'arrow.b.curve'],
|
|
853
|
-
['downdasharrow', 'arrow.b.dashed'],
|
|
854
|
-
['Downarrow', 'arrow.b.double'],
|
|
855
|
-
['DDownarrow', 'arrow.b.quad'],
|
|
856
|
-
['downarrowbar', 'arrow.b.stop'],
|
|
857
|
-
['downwhitearrow', 'arrow.b.stroked'],
|
|
858
|
-
['Ddownarrow', 'arrow.b.triple'],
|
|
859
|
-
['twoheaddownarrow', 'arrow.b.twohead'],
|
|
860
|
-
['leftrightarrow', 'arrow.l.r'],
|
|
861
|
-
['Leftrightarrow', 'arrow.l.r.double'],
|
|
862
|
-
['Longleftrightarrow', 'arrow.l.r.double.long'],
|
|
863
|
-
['nLeftrightarrow', 'arrow.l.r.double.not'],
|
|
864
|
-
['longleftrightarrow', 'arrow.l.r.long'],
|
|
865
|
-
['nleftrightarrow', 'arrow.l.r.not'],
|
|
866
|
-
['leftrightsquigarrow', 'arrow.l.r.wave'],
|
|
974
|
+
['updasharrow', 'arrow.t.dashed'],
|
|
867
975
|
['updownarrow', 'arrow.t.b'],
|
|
868
976
|
['Updownarrow', 'arrow.t.b.double'],
|
|
869
|
-
['nearrow', 'arrow.tr'],
|
|
870
|
-
['Nearrow', 'arrow.tr.double'],
|
|
871
|
-
['hknearrow', 'arrow.tr.hook'],
|
|
872
|
-
['searrow', 'arrow.br'],
|
|
873
|
-
['Searrow', 'arrow.br.double'],
|
|
874
|
-
['hksearrow', 'arrow.br.hook'],
|
|
875
|
-
['nwarrow', 'arrow.tl'],
|
|
876
|
-
['Nwarrow', 'arrow.tl.double'],
|
|
877
|
-
['hknwarrow', 'arrow.tl.hook'],
|
|
878
|
-
['swarrow', 'arrow.bl'],
|
|
879
|
-
['Swarrow', 'arrow.bl.double'],
|
|
880
|
-
['hkswarrow', 'arrow.bl.hook'],
|
|
881
|
-
['nwsearrow', 'arrow.tl.br'],
|
|
882
|
-
['neswarrow', 'arrow.tr.bl'],
|
|
883
|
-
['acwopencirclearrow', 'arrow.ccw'],
|
|
884
|
-
['curvearrowleft', 'arrow.ccw.half'],
|
|
885
|
-
['cwopencirclearrow', 'arrow.cw'],
|
|
886
|
-
['curvearrowright', 'arrow.cw.half'],
|
|
887
|
-
['downzigzagarrow', 'arrow.zigzag'],
|
|
888
|
-
['rightrightarrows', 'arrows.rr'],
|
|
889
|
-
['leftleftarrows', 'arrows.ll'],
|
|
890
|
-
['upuparrows', 'arrows.tt'],
|
|
891
|
-
['downdownarrows', 'arrows.bb'],
|
|
892
|
-
['leftrightarrows', 'arrows.lr'],
|
|
893
|
-
['barleftarrowrightarrowbar', 'arrows.lr.stop'],
|
|
894
|
-
['rightleftarrows', 'arrows.rl'],
|
|
895
977
|
['updownarrows', 'arrows.tb'],
|
|
896
|
-
['downuparrows', 'arrows.bt'],
|
|
897
|
-
['rightthreearrows', 'arrows.rrr'],
|
|
898
|
-
['leftthreearrows', 'arrows.lll'],
|
|
899
|
-
['rightharpoonup', 'harpoon.rt'],
|
|
900
|
-
['barrightharpoonup', 'harpoon.rt.bar'],
|
|
901
|
-
['rightharpoonupbar', 'harpoon.rt.stop'],
|
|
902
|
-
['rightharpoondown', 'harpoon.rb'],
|
|
903
|
-
['barrightharpoondown', 'harpoon.rb.bar'],
|
|
904
|
-
['rightharpoondownbar', 'harpoon.rb.stop'],
|
|
905
|
-
['leftharpoonup', 'harpoon.lt'],
|
|
906
|
-
['leftharpoonupbar', 'harpoon.lt.bar'],
|
|
907
|
-
['barleftharpoonup', 'harpoon.lt.stop'],
|
|
908
|
-
['leftharpoondown', 'harpoon.lb'],
|
|
909
|
-
['leftharpoondownbar', 'harpoon.lb.bar'],
|
|
910
|
-
['barleftharpoondown', 'harpoon.lb.stop'],
|
|
911
|
-
['upharpoonleft', 'harpoon.tl'],
|
|
912
|
-
['upharpoonleftbar', 'harpoon.tl.bar'],
|
|
913
|
-
['barupharpoonleft', 'harpoon.tl.stop'],
|
|
914
|
-
['upharpoonright', 'harpoon.tr'],
|
|
915
|
-
['upharpoonrightbar', 'harpoon.tr.bar'],
|
|
916
|
-
['barupharpoonright', 'harpoon.tr.stop'],
|
|
917
|
-
['downharpoonleft', 'harpoon.bl'],
|
|
918
|
-
['bardownharpoonleft', 'harpoon.bl.bar'],
|
|
919
|
-
['downharpoonleftbar', 'harpoon.bl.stop'],
|
|
920
|
-
['downharpoonright', 'harpoon.br'],
|
|
921
|
-
['bardownharpoonright', 'harpoon.br.bar'],
|
|
922
|
-
['downharpoonrightbar', 'harpoon.br.stop'],
|
|
923
|
-
['leftrightharpoonupup', 'harpoon.lt.rt'],
|
|
924
|
-
['leftrightharpoondowndown', 'harpoon.lb.rb'],
|
|
925
|
-
['leftrightharpoondownup', 'harpoon.lb.rt'],
|
|
926
|
-
['leftrightharpoonupdown', 'harpoon.lt.rb'],
|
|
927
978
|
['updownharpoonleftleft', 'harpoon.tl.bl'],
|
|
928
|
-
['updownharpoonrightright', 'harpoon.tr.br'],
|
|
929
979
|
['updownharpoonleftright', 'harpoon.tl.br'],
|
|
930
980
|
['updownharpoonrightleft', 'harpoon.tr.bl'],
|
|
931
|
-
['
|
|
932
|
-
['downharpoonsleftright', 'harpoons.blbr'],
|
|
933
|
-
['downupharpoonsleftright', 'harpoons.bltr'],
|
|
934
|
-
['leftrightharpoonsdown', 'harpoons.lbrb'],
|
|
935
|
-
['leftharpoonsupdown', 'harpoons.ltlb'],
|
|
936
|
-
['leftrightharpoons', 'harpoons.ltrb'],
|
|
937
|
-
['leftrightharpoonsup', 'harpoons.ltrt'],
|
|
938
|
-
['rightleftharpoonsdown', 'harpoons.rblb'],
|
|
939
|
-
['rightleftharpoons', 'harpoons.rtlb'],
|
|
940
|
-
['rightleftharpoonsup', 'harpoons.rtlt'],
|
|
981
|
+
['updownharpoonrightright', 'harpoon.tr.br'],
|
|
941
982
|
['updownharpoonsleftright', 'harpoons.tlbr'],
|
|
983
|
+
['upharpoonleft', 'harpoon.tl'],
|
|
984
|
+
['upharpoonleftbar', 'harpoon.tl.bar'],
|
|
985
|
+
['upharpoonright', 'harpoon.tr'],
|
|
986
|
+
['upharpoonrightbar', 'harpoon.tr.bar'],
|
|
942
987
|
['upharpoonsleftright', 'harpoons.tltr'],
|
|
988
|
+
['uplus', 'union.plus'],
|
|
989
|
+
['uprightcurvearrow', 'arrow.t.curve'],
|
|
990
|
+
['upuparrows', 'arrows.tt'],
|
|
991
|
+
['upwhitearrow', 'arrow.t.stroked'],
|
|
992
|
+
['urblacktriangle', 'triangle.filled.tr'],
|
|
993
|
+
['urtriangle', 'triangle.stroked.tr'],
|
|
994
|
+
['UUparrow', 'arrow.t.quad'],
|
|
995
|
+
['Uuparrow', 'arrow.t.triple'],
|
|
996
|
+
['varclubsuit', 'suit.club.stroked'],
|
|
997
|
+
['vardiamondsuit', 'suit.diamond.filled'],
|
|
998
|
+
['varheartsuit', 'suit.heart.filled'],
|
|
999
|
+
['varhexagon', 'hexa.stroked'],
|
|
1000
|
+
['varhexagonblack', 'hexa.filled'],
|
|
1001
|
+
['varnothing', 'emptyset'],
|
|
1002
|
+
['varointclockwise', 'integral.cont.cw'],
|
|
1003
|
+
['varspadesuit', 'suit.spade.stroked'],
|
|
1004
|
+
['vartriangle', 'triangle.stroked.small.t'],
|
|
1005
|
+
['vartriangleleft', 'lt.tri'],
|
|
1006
|
+
['vartriangleright', 'gt.tri'],
|
|
1007
|
+
['Vbar', 'tack.t.double'],
|
|
1008
|
+
['Vdash', 'forces'],
|
|
943
1009
|
['vdash', 'tack.r'],
|
|
944
|
-
['nvdash', 'tack.r.not'],
|
|
945
|
-
['vlongdash', 'tack.r.long'],
|
|
946
|
-
['assert', 'tack.r.short'],
|
|
947
1010
|
['vDash', 'tack.r.double'],
|
|
948
|
-
['
|
|
949
|
-
['
|
|
950
|
-
['
|
|
951
|
-
['
|
|
952
|
-
['
|
|
953
|
-
['
|
|
954
|
-
['
|
|
955
|
-
['
|
|
956
|
-
['
|
|
957
|
-
['
|
|
958
|
-
['
|
|
959
|
-
['
|
|
960
|
-
|
|
961
|
-
['
|
|
962
|
-
['
|
|
963
|
-
['
|
|
964
|
-
['
|
|
965
|
-
['
|
|
966
|
-
['
|
|
967
|
-
['
|
|
968
|
-
['
|
|
969
|
-
['
|
|
970
|
-
['
|
|
971
|
-
['mupvarkappa', 'kappa.alt'],
|
|
972
|
-
['muplambda', 'lambda'],
|
|
973
|
-
['mupmu', 'mu'],
|
|
974
|
-
['mupnu', 'nu'],
|
|
975
|
-
['mho', 'ohm.inv'],
|
|
976
|
-
['mupomega', 'omega'],
|
|
977
|
-
['mupomicron', 'omicron'],
|
|
978
|
-
['mupvarphi', 'phi'],
|
|
979
|
-
['mupphi', 'phi.alt'],
|
|
980
|
-
['muppi', 'pi'],
|
|
981
|
-
['mupvarpi', 'pi.alt'],
|
|
982
|
-
['muppsi', 'psi'],
|
|
983
|
-
['muprho', 'rho'],
|
|
984
|
-
['mupvarrho', 'rho.alt'],
|
|
985
|
-
['mupsigma', 'sigma'],
|
|
986
|
-
['mupvarsigma', 'sigma.alt'],
|
|
987
|
-
['muptau', 'tau'],
|
|
988
|
-
['muptheta', 'theta'],
|
|
989
|
-
['mupvartheta', 'theta.alt'],
|
|
990
|
-
['mupupsilon', 'upsilon'],
|
|
991
|
-
['mupxi', 'xi'],
|
|
992
|
-
['mupzeta', 'zeta'],
|
|
993
|
-
['mupAlpha', 'Alpha'],
|
|
994
|
-
['mupBeta', 'Beta'],
|
|
995
|
-
['mupChi', 'Chi'],
|
|
996
|
-
['mupDelta', 'Delta'],
|
|
997
|
-
['mupEpsilon', 'Epsilon'],
|
|
998
|
-
['mupEta', 'Eta'],
|
|
999
|
-
['mupGamma', 'Gamma'],
|
|
1000
|
-
['mupIota', 'Iota'],
|
|
1001
|
-
['mupKappa', 'Kappa'],
|
|
1002
|
-
['mupLambda', 'Lambda'],
|
|
1003
|
-
['mupMu', 'Mu'],
|
|
1004
|
-
['mupNu', 'Nu'],
|
|
1005
|
-
['mupOmega', 'Omega'],
|
|
1006
|
-
['mupOmicron', 'Omicron'],
|
|
1007
|
-
['mupPhi', 'Phi'],
|
|
1008
|
-
['mupPi', 'Pi'],
|
|
1009
|
-
['mupPsi', 'Psi'],
|
|
1010
|
-
['mupRho', 'Rho'],
|
|
1011
|
-
['mupSigma', 'Sigma'],
|
|
1012
|
-
['mupTau', 'Tau'],
|
|
1013
|
-
['mupTheta', 'Theta'],
|
|
1014
|
-
['mupUpsilon', 'Upsilon'],
|
|
1015
|
-
['mupXi', 'Xi'],
|
|
1016
|
-
['mupZeta', 'Zeta'],
|
|
1017
|
-
*/
|
|
1018
|
-
['BbbA', 'AA'],
|
|
1019
|
-
['BbbB', 'BB'],
|
|
1020
|
-
['BbbC', 'CC'],
|
|
1021
|
-
['BbbD', 'DD'],
|
|
1022
|
-
['BbbE', 'EE'],
|
|
1023
|
-
['BbbF', 'FF'],
|
|
1024
|
-
['BbbG', 'GG'],
|
|
1025
|
-
['BbbH', 'HH'],
|
|
1026
|
-
['BbbI', 'II'],
|
|
1027
|
-
['BbbJ', 'JJ'],
|
|
1028
|
-
['BbbK', 'KK'],
|
|
1029
|
-
['BbbL', 'LL'],
|
|
1030
|
-
['BbbM', 'MM'],
|
|
1031
|
-
['BbbN', 'NN'],
|
|
1032
|
-
['BbbO', 'OO'],
|
|
1033
|
-
['BbbP', 'PP'],
|
|
1034
|
-
['BbbQ', 'QQ'],
|
|
1035
|
-
['BbbR', 'RR'],
|
|
1036
|
-
['BbbS', 'SS'],
|
|
1037
|
-
['BbbT', 'TT'],
|
|
1038
|
-
['BbbU', 'UU'],
|
|
1039
|
-
['BbbV', 'VV'],
|
|
1040
|
-
['BbbW', 'WW'],
|
|
1041
|
-
['BbbX', 'XX'],
|
|
1042
|
-
['BbbY', 'YY'],
|
|
1043
|
-
['BbbZ', 'ZZ'],
|
|
1044
|
-
['ell', 'ell'],
|
|
1045
|
-
['Planckconst', 'planck'],
|
|
1046
|
-
['hslash', 'planck.reduce'],
|
|
1047
|
-
['Angstrom', 'angstrom'],
|
|
1048
|
-
['Re', 'Re'],
|
|
1049
|
-
['Im', 'Im'],
|
|
1050
|
-
['imath', 'dotless.i'],
|
|
1051
|
-
['jmath', 'dotless.j'],
|
|
1011
|
+
['vdots', 'dots.v'],
|
|
1012
|
+
['vee', 'or'],
|
|
1013
|
+
['Vee', 'or.double'],
|
|
1014
|
+
['veedot', 'or.dot'],
|
|
1015
|
+
['veeeq', 'eq.equi'],
|
|
1016
|
+
['vert', 'bar.v'],
|
|
1017
|
+
['Vert', 'bar.v.double'],
|
|
1018
|
+
['vlongdash', 'tack.r.long'],
|
|
1019
|
+
['vrectangle', 'rect.stroked.v'],
|
|
1020
|
+
['vrectangleblack', 'rect.filled.v'],
|
|
1021
|
+
['Vvert', 'bar.v.triple'],
|
|
1022
|
+
['vysmblkcircle', 'circle.filled.small'],
|
|
1023
|
+
['vysmwhtcircle', 'circle.stroked.tiny'], // or compose
|
|
1024
|
+
['wedge', 'and'],
|
|
1025
|
+
['Wedge', 'and.double'],
|
|
1026
|
+
['wedgedot', 'and.dot'],
|
|
1027
|
+
['wedgeq', 'eq.est'],
|
|
1028
|
+
['whiteinwhitetriangle', 'triangle.stroked.nested'],
|
|
1029
|
+
['whthorzoval', 'ellipse.stroked.h'],
|
|
1030
|
+
['whtvertoval', 'ellipse.stroked.v'],
|
|
1031
|
+
['wideangledown', 'angle.oblique'],
|
|
1032
|
+
['wr', 'wreath'],
|
|
1033
|
+
['xsol', 'slash.big'],
|
|
1052
1034
|
]);
|
|
1053
1035
|
|
|
1054
1036
|
const texAliasMap = new Map<string, string>([
|