plurimath 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +13 -0
  3. data/.github/workflows/release.yml +22 -0
  4. data/.gitignore +1 -0
  5. data/.hound.yml +5 -0
  6. data/.rubocop.yml +8 -0
  7. data/AsciiMath-Supported-Data.adoc +2000 -0
  8. data/Gemfile +3 -0
  9. data/Latex-Supported-Data.adoc +1879 -0
  10. data/MathML-Supported-Data.adoc +287 -0
  11. data/README.adoc +96 -0
  12. data/lib/plurimath/asciimath/constants.rb +267 -229
  13. data/lib/plurimath/asciimath/parse.rb +125 -26
  14. data/lib/plurimath/asciimath/parser.rb +6 -3
  15. data/lib/plurimath/asciimath/transform.rb +1135 -208
  16. data/lib/plurimath/asciimath.rb +1 -1
  17. data/lib/plurimath/html/constants.rb +50 -0
  18. data/lib/plurimath/html/parse.rb +149 -0
  19. data/lib/plurimath/html/parser.rb +26 -0
  20. data/lib/plurimath/html/transform.rb +363 -0
  21. data/lib/plurimath/html.rb +1 -1
  22. data/lib/plurimath/latex/constants.rb +3729 -1906
  23. data/lib/plurimath/latex/parse.rb +167 -51
  24. data/lib/plurimath/latex/parser.rb +12 -4
  25. data/lib/plurimath/latex/transform.rb +598 -183
  26. data/lib/plurimath/math/base.rb +15 -0
  27. data/lib/plurimath/math/formula.rb +96 -11
  28. data/lib/plurimath/math/function/bar.rb +34 -0
  29. data/lib/plurimath/math/function/base.rb +32 -5
  30. data/lib/plurimath/math/function/binary_function.rb +104 -17
  31. data/lib/plurimath/math/function/cancel.rb +8 -0
  32. data/lib/plurimath/math/function/ceil.rb +3 -0
  33. data/lib/plurimath/math/function/color.rb +16 -6
  34. data/lib/plurimath/math/function/f.rb +8 -0
  35. data/lib/plurimath/math/function/fenced.rb +95 -3
  36. data/lib/plurimath/math/function/floor.rb +15 -0
  37. data/lib/plurimath/math/function/font_style/bold.rb +37 -0
  38. data/lib/plurimath/math/function/font_style/double_struck.rb +37 -0
  39. data/lib/plurimath/math/function/font_style/fraktur.rb +37 -0
  40. data/lib/plurimath/math/function/font_style/italic.rb +37 -0
  41. data/lib/plurimath/math/function/font_style/monospace.rb +37 -0
  42. data/lib/plurimath/math/function/font_style/normal.rb +37 -0
  43. data/lib/plurimath/math/function/font_style/sans-serif.rb +37 -0
  44. data/lib/plurimath/math/function/font_style/script.rb +37 -0
  45. data/lib/plurimath/math/function/font_style.rb +18 -25
  46. data/lib/plurimath/math/function/frac.rb +35 -5
  47. data/lib/plurimath/math/function/g.rb +7 -0
  48. data/lib/plurimath/math/function/hat.rb +12 -0
  49. data/lib/plurimath/math/function/inf.rb +21 -1
  50. data/lib/plurimath/math/function/int.rb +23 -2
  51. data/lib/plurimath/math/function/left.rb +25 -4
  52. data/lib/plurimath/math/function/lim.rb +40 -2
  53. data/lib/plurimath/math/function/limits.rb +8 -0
  54. data/lib/plurimath/math/function/log.rb +61 -4
  55. data/lib/plurimath/math/function/longdiv.rb +12 -0
  56. data/lib/plurimath/math/function/mbox.rb +31 -0
  57. data/lib/plurimath/math/function/menclose.rb +46 -0
  58. data/lib/plurimath/math/function/merror.rb +12 -0
  59. data/lib/plurimath/math/function/mod.rb +25 -4
  60. data/lib/plurimath/math/function/msgroup.rb +37 -0
  61. data/lib/plurimath/math/function/msline.rb +12 -0
  62. data/lib/plurimath/math/function/multiscript.rb +30 -0
  63. data/lib/plurimath/math/function/norm.rb +18 -1
  64. data/lib/plurimath/math/function/obrace.rb +17 -0
  65. data/lib/plurimath/math/function/oint.rb +2 -2
  66. data/lib/plurimath/math/function/over.rb +36 -0
  67. data/lib/plurimath/math/function/overset.rb +36 -7
  68. data/lib/plurimath/math/function/phantom.rb +28 -0
  69. data/lib/plurimath/math/function/power.rb +33 -9
  70. data/lib/plurimath/math/function/power_base.rb +110 -5
  71. data/lib/plurimath/math/function/prod.rb +29 -2
  72. data/lib/plurimath/math/function/right.rb +44 -0
  73. data/lib/plurimath/math/function/root.rb +27 -4
  74. data/lib/plurimath/math/function/rule.rb +33 -0
  75. data/lib/plurimath/math/function/scarries.rb +12 -0
  76. data/lib/plurimath/math/function/scarry.rb +12 -0
  77. data/lib/plurimath/math/function/sqrt.rb +24 -2
  78. data/lib/plurimath/math/function/stackrel.rb +27 -0
  79. data/lib/plurimath/math/function/substack.rb +7 -1
  80. data/lib/plurimath/math/function/sum.rb +56 -2
  81. data/lib/plurimath/math/function/sup.rb +3 -0
  82. data/lib/plurimath/math/function/table/align.rb +24 -0
  83. data/lib/plurimath/math/function/table/array.rb +44 -0
  84. data/lib/plurimath/math/function/table/bmatrix.rb +37 -0
  85. data/lib/plurimath/math/function/table/matrix.rb +32 -0
  86. data/lib/plurimath/math/function/table/multline.rb +24 -0
  87. data/lib/plurimath/math/function/table/pmatrix.rb +24 -0
  88. data/lib/plurimath/math/function/table/split.rb +24 -0
  89. data/lib/plurimath/math/function/table/vmatrix.rb +24 -0
  90. data/lib/plurimath/math/function/table.rb +190 -20
  91. data/lib/plurimath/math/function/td.rb +27 -9
  92. data/lib/plurimath/math/function/ternary_function.rb +83 -8
  93. data/lib/plurimath/math/function/text.rb +45 -8
  94. data/lib/plurimath/math/function/tr.rb +28 -4
  95. data/lib/plurimath/math/function/ubrace.rb +17 -0
  96. data/lib/plurimath/math/function/ul.rb +29 -0
  97. data/lib/plurimath/math/function/unary_function.rb +85 -7
  98. data/lib/plurimath/math/function/underline.rb +12 -0
  99. data/lib/plurimath/math/function/underover.rb +107 -0
  100. data/lib/plurimath/math/function/underset.rb +39 -0
  101. data/lib/plurimath/math/function/vec.rb +10 -0
  102. data/lib/plurimath/math/function.rb +13 -2
  103. data/lib/plurimath/math/number.rb +11 -3
  104. data/lib/plurimath/math/symbol.rb +57 -9
  105. data/lib/plurimath/math/unicode.rb +11 -0
  106. data/lib/plurimath/math.rb +15 -6
  107. data/lib/plurimath/mathml/constants.rb +224 -179
  108. data/lib/plurimath/mathml/parser.rb +24 -7
  109. data/lib/plurimath/mathml/transform.rb +249 -148
  110. data/lib/plurimath/mathml.rb +1 -1
  111. data/lib/plurimath/omml/parser.rb +42 -0
  112. data/lib/plurimath/omml/transform.rb +278 -0
  113. data/lib/plurimath/omml.rb +1 -1
  114. data/lib/plurimath/unitsml.rb +4 -0
  115. data/lib/plurimath/utility.rb +395 -0
  116. data/lib/plurimath/version.rb +1 -1
  117. data/plurimath.gemspec +1 -0
  118. metadata +66 -9
  119. data/.github/workflows/test.yml +0 -36
  120. data/README.md +0 -40
  121. data/lib/plurimath/mathml/parse.rb +0 -63
@@ -0,0 +1,1879 @@
1
+ == LaTeX symbols
2
+
3
+ === Parenthesis
4
+
5
+ |===
6
+ | Open | Close
7
+ | `[` | `]`
8
+ | `{` | `}`
9
+ | `(` | `)`
10
+ | `{` | `}`
11
+ |===
12
+
13
+ === Functions and others
14
+
15
+ |===
16
+ | Functions | Numeric Values | Matrices | Font Styles | Operators
17
+ | `stackrel` | `zero` | `multline` | `displaystyle` | `!`
18
+ | `substack` | `one` | `Vmatrix` | `mathsfbfit` | `#`
19
+ | `overline` | `two` | `vmatrix` | `mbfitsans` | `$`
20
+ | `liminf` | `three` | `pmatrix` | `mathbold` | `%`
21
+ | `limsup` | `four` | `Bmatrix` | `mathsfit` | `&`
22
+ | `arctan` | `five` | `bmatrix` | `mathsfbf` | `'`
23
+ | `arcsin` | `six` | `matrix` | `mathbfit` | `*`
24
+ | `arccos` | `seven` | `split` | `mathfrak` | `+`
25
+ | `color` | `eight` | `align` | `mathcal` | `,`
26
+ | `binom` | `nine` | `array` | `mbfsans` | `-`
27
+ | `tilde` | | | `mathds` | `.`
28
+ | `prod` | | | `mathbf` | `/`
29
+ | `pmod` | | | `mathbb` | `:`
30
+ | `bmod` | | | `mathtt` | `;`
31
+ | `frac` | | | `mathrm` | `<`
32
+ | `cosh` | | | `mathsf` | `=`
33
+ | `tanh` | | | `mathit` | `>`
34
+ | `coth` | | | `textrm` | `?`
35
+ | `sinh` | | | `mfrak` | `@`
36
+ | `log` | | | `mbfit` | `_`
37
+ | `inf` | | | `msans` | `\|`
38
+ | `sum` | | | `mscr` |
39
+ | `lim` | | | `mit` |
40
+ | `bar` | | | `mbf` |
41
+ | `ker` | | | `mtt` |
42
+ | `sup` | | | `Bbb` |
43
+ | `hom` | | | `rm` |
44
+ | `sin` | | | `bf` |
45
+ | `sec` | | | |
46
+ | `min` | | | |
47
+ | `max` | | | |
48
+ | `gcd` | | | |
49
+ | `exp` | | | |
50
+ | `dim` | | | |
51
+ | `det` | | | |
52
+ | `deg` | | | |
53
+ | `csc` | | | |
54
+ | `cot` | | | |
55
+ | `cos` | | | |
56
+ | `tan` | | | |
57
+ | `vec` | | | |
58
+ | `hat` | | | |
59
+ | `ln` | | | |
60
+ | `lg` | | | |
61
+
62
+ |===
63
+
64
+ === Symbols
65
+
66
+ * `barleftarrowrightarrowba`
67
+ * `rightarrowshortleftarrow`
68
+ * `leftarrowshortrightarrow`
69
+ * `shortrightarrowleftarrow`
70
+ * `leftrightharpoondowndown`
71
+ * `smallblacktriangleright`
72
+ * `invwhiteupperhalfcircle`
73
+ * `invwhitelowerhalfcircle`
74
+ * `concavediamondtickright`
75
+ * `nvtwoheadrightarrowtail`
76
+ * `nVtwoheadrightarrowtail`
77
+ * `updownharpoonrightright`
78
+ * `updownharpoonsleftright`
79
+ * `downupharpoonsleftright`
80
+ * `leftrightarrowtriangle`
81
+ * `smallblacktriangleleft`
82
+ * `blackcircleulquadwhite`
83
+ * `concavediamondtickleft`
84
+ * `leftrightharpoonupdown`
85
+ * `leftrightharpoondownup`
86
+ * `updownharpoonrightleft`
87
+ * `updownharpoonleftright`
88
+ * `downtrianglerightblack`
89
+ * `partialmeetcontraction`
90
+ * `nvtwoheadleftarrowtail`
91
+ * `nVtwoheadleftarrowtail`
92
+ * `underrightharpoondown`
93
+ * `barovernorthwestarrow`
94
+ * `rangledownzigzagarrow`
95
+ * `circlebottomhalfblack`
96
+ * `twoheadrightarrowtail`
97
+ * `updownharpoonleftleft`
98
+ * `downharpoonsleftright`
99
+ * `leftrightharpoonsdown`
100
+ * `rightleftharpoonsdown`
101
+ * `downtriangleleftblack`
102
+ * `blackdiamonddownarrow`
103
+ * `closedvarcupsmashprod`
104
+ * `underleftharpoondown`
105
+ * `CapitalDifferentialD`
106
+ * `bigblacktriangledown`
107
+ * `circlerighthalfblack`
108
+ * `blackrighthalfcircle`
109
+ * `blackcircledrightdot`
110
+ * `whiteinwhitetriangle`
111
+ * `whitesquaretickright`
112
+ * `barrightarrowdiamond`
113
+ * `downrightcurvedarrow`
114
+ * `rightdowncurvedarrow`
115
+ * `curvearrowrightminus`
116
+ * `leftrightarrowcircle`
117
+ * `twoheaduparrowcircle`
118
+ * `leftrightharpoonupup`
119
+ * `leftrightharpoondown`
120
+ * `dashrightharpoondown`
121
+ * `blackcircledownarrow`
122
+ * `NestedGreaterGreater`
123
+ * `twoheadleftarrowtail`
124
+ * `rightarrowbackapprox`
125
+ * `leftrightsquigarrow`
126
+ * `whitearrowupfrombar`
127
+ * `blockthreeqtrshaded`
128
+ * `blackinwhitediamond`
129
+ * `circlelefthalfblack`
130
+ * `blacklefthalfcircle`
131
+ * `blackcircledtwodots`
132
+ * `whitesquaretickleft`
133
+ * `longrightsquigarrow`
134
+ * `nvtwoheadrightarrow`
135
+ * `nVtwoheadrightarrow`
136
+ * `diamondleftarrowbar`
137
+ * `leftdowncurvedarrow`
138
+ * `downharpoonrightbar`
139
+ * `rightharpoondownbar`
140
+ * `bardownharpoonright`
141
+ * `barrightharpoondown`
142
+ * `upharpoonsleftright`
143
+ * `rightharpoonsupdown`
144
+ * `leftrightharpoonsup`
145
+ * `rightleftharpoonsup`
146
+ * `dashleftharpoondown`
147
+ * `twoheadleftdbkarrow`
148
+ * `leftarrowbackapprox`
149
+ * `rightharpoonaccent`
150
+ * `overleftrightarrow`
151
+ * `acwopencirclearrow`
152
+ * `upharpoonrightdown`
153
+ * `circleonrightarrow`
154
+ * `rightarrowtriangle`
155
+ * `PrecedesSlantEqual`
156
+ * `SucceedsSlantEqual`
157
+ * `measuredrightangle`
158
+ * `blackinwhitesquare`
159
+ * `parallelogramblack`
160
+ * `bigblacktriangleup`
161
+ * `blacktriangleright`
162
+ * `smalltriangleright`
163
+ * `circletophalfblack`
164
+ * `inversewhitecircle`
165
+ * `trianglerightblack`
166
+ * `longleftrightarrow`
167
+ * `Longleftrightarrow`
168
+ * `curvearrowleftplus`
169
+ * `ccwundercurvearrow`
170
+ * `leftrightharpoonup`
171
+ * `rightupdownharpoon`
172
+ * `RightDownVectorBar`
173
+ * `barleftharpoondown`
174
+ * `DownRightVectorBar`
175
+ * `downharpoonleftbar`
176
+ * `RightDownTeeVector`
177
+ * `leftharpoondownbar`
178
+ * `DownRightTeeVector`
179
+ * `bardownharpoonleft`
180
+ * `leftharpoonsupdown`
181
+ * `rightrightharpoons`
182
+ * `rightharpoonupdash`
183
+ * `circledwhitebullet`
184
+ * `errbarblackdiamond`
185
+ * `longleftsquigarrow`
186
+ * `nvtwoheadleftarrow`
187
+ * `nVtwoheadleftarrow`
188
+ * `bsimilarrightarrow`
189
+ * `rightarrowbsimilar`
190
+ * `rightpentagonblack`
191
+ * `leftharpoonaccent`
192
+ * `twoheadrightarrow`
193
+ * `cwopencirclearrow`
194
+ * `upharpoonleftdown`
195
+ * `leftrightharpoons`
196
+ * `rightleftharpoons`
197
+ * `leftarrowtriangle`
198
+ * `kernelcontraction`
199
+ * `vardoublebarwedge`
200
+ * `varhexagonlrbonds`
201
+ * `varcarriagereturn`
202
+ * `blackpointerright`
203
+ * `whitepointerright`
204
+ * `blacktriangledown`
205
+ * `smalltriangledown`
206
+ * `blacktriangleleft`
207
+ * `smalltriangleleft`
208
+ * `circleurquadblack`
209
+ * `triangleleftblack`
210
+ * `acwgapcirclearrow`
211
+ * `rightarrowonoplus`
212
+ * `rightarrowdiamond`
213
+ * `uprightcurvearrow`
214
+ * `cwundercurvearrow`
215
+ * `leftupdownharpoon`
216
+ * `rightharpoonupbar`
217
+ * `barupharpoonright`
218
+ * `DownLeftVectorBar`
219
+ * `LeftDownVectorBar`
220
+ * `barrightharpoonup`
221
+ * `upharpoonrightbar`
222
+ * `DownLeftTeeVector`
223
+ * `LeftDownTeeVector`
224
+ * `leftharpoonupdash`
225
+ * `similarrightarrow`
226
+ * `rightarrowsimilar`
227
+ * `measuredangleleft`
228
+ * `errbarblacksquare`
229
+ * `errbarblackcircle`
230
+ * `diamondrightblack`
231
+ * `circleonleftarrow`
232
+ * `bsimilarleftarrow`
233
+ * `leftarrowbsimilar`
234
+ * `twoheadleftarrow`
235
+ * `twoheaddownarrow`
236
+ * `circlearrowright`
237
+ * `rightharpoondown`
238
+ * `downharpoonright`
239
+ * `uparrowdownarrow`
240
+ * `rightrightarrows`
241
+ * `downarrowuparrow`
242
+ * `rightthreearrows`
243
+ * `nvleftrightarrow`
244
+ * `nVleftrightarrow`
245
+ * `varointclockwise`
246
+ * `ointctrclockwise`
247
+ * `vartriangleright`
248
+ * `multimapdotbothA`
249
+ * `multimapdotbothB`
250
+ * `NotRightTriangle`
251
+ * `ntrianglerighteq`
252
+ * `APLrightarrowbox`
253
+ * `blackpointerleft`
254
+ * `whitepointerleft`
255
+ * `squarerightblack`
256
+ * `cwgapcirclearrow`
257
+ * `nvLeftrightarrow`
258
+ * `nvrightarrowtail`
259
+ * `nVrightarrowtail`
260
+ * `diamondleftarrow`
261
+ * `rightcurvedarrow`
262
+ * `acwunderarcarrow`
263
+ * `leftrightharpoon`
264
+ * `rightleftharpoon`
265
+ * `barleftharpoonup`
266
+ * `RightUpVectorBar`
267
+ * `barupharpoonleft`
268
+ * `leftharpoonupbar`
269
+ * `RightUpTeeVector`
270
+ * `upharpoonleftbar`
271
+ * `leftleftharpoons`
272
+ * `downdownharpoons`
273
+ * `uprevequilibrium`
274
+ * `leftarrowsimilar`
275
+ * `rightarrowapprox`
276
+ * `sphericalangleup`
277
+ * `RightTriangleBar`
278
+ * `diamondleftblack`
279
+ * `leftarrowonoplus`
280
+ * `rightarrowsupset`
281
+ * `similarleftarrow`
282
+ * `enleadertwodots`
283
+ * `unicodeellipsis`
284
+ * `enclosetriangle`
285
+ * `widebridgeabove`
286
+ * `underrightarrow`
287
+ * `nleftrightarrow`
288
+ * `downzigzagarrow`
289
+ * `curvearrowright`
290
+ * `circlearrowleft`
291
+ * `leftharpoondown`
292
+ * `upharpoonleftup`
293
+ * `downharpoonleft`
294
+ * `rightleftarrows`
295
+ * `leftrightarrows`
296
+ * `nLeftrightarrow`
297
+ * `rightsquigarrow`
298
+ * `rightwhitearrow`
299
+ * `NotGreaterTilde`
300
+ * `vartriangleleft`
301
+ * `trianglerighteq`
302
+ * `rightthreetimes`
303
+ * `NotLeftTriangle`
304
+ * `ntrianglelefteq`
305
+ * `APLnotbackslash`
306
+ * `APLleftarrowbox`
307
+ * `APLdownarrowbox`
308
+ * `blockhalfshaded`
309
+ * `squarecrossfill`
310
+ * `hrectangleblack`
311
+ * `vrectangleblack`
312
+ * `blacktriangleup`
313
+ * `smalltriangleup`
314
+ * `bigtriangledown`
315
+ * `lrblacktriangle`
316
+ * `llblacktriangle`
317
+ * `ulblacktriangle`
318
+ * `urblacktriangle`
319
+ * `squareleftblack`
320
+ * `circledrightdot`
321
+ * `downarrowbarred`
322
+ * `cwrightarcarrow`
323
+ * `acwleftarcarrow`
324
+ * `acwoverarcarrow`
325
+ * `LeftUpVectorBar`
326
+ * `LeftUpTeeVector`
327
+ * `rightbarharpoon`
328
+ * `barrightharpoon`
329
+ * `equalrightarrow`
330
+ * `leftarrowsubset`
331
+ * `measanglerutone`
332
+ * `measanglelutonw`
333
+ * `measanglerdtose`
334
+ * `measangleldtosw`
335
+ * `measangleurtone`
336
+ * `measangleultonw`
337
+ * `measangledrtose`
338
+ * `measangledltosw`
339
+ * `circledparallel`
340
+ * `uparrowoncircle`
341
+ * `LeftTriangleBar`
342
+ * `circledownarrow`
343
+ * `bigtriangleleft`
344
+ * `diamondtopblack`
345
+ * `diamondbotblack`
346
+ * `varhexagonblack`
347
+ * `leftthreearrows`
348
+ * `twoheadmapsfrom`
349
+ * `nvleftarrowtail`
350
+ * `nVleftarrowtail`
351
+ * `leftcurvedarrow`
352
+ * `leftarrowapprox`
353
+ * `enclosediamond`
354
+ * `underleftarrow`
355
+ * `leftrightarrow`
356
+ * `rightwavearrow`
357
+ * `twoheaduparrow`
358
+ * `rightarrowtail`
359
+ * `updownarrowbar`
360
+ * `hookrightarrow`
361
+ * `looparrowright`
362
+ * `carriagereturn`
363
+ * `curvearrowleft`
364
+ * `upharpoonright`
365
+ * `rightharpoonup`
366
+ * `rightleftarrow`
367
+ * `leftleftarrows`
368
+ * `downdownarrows`
369
+ * `revequilibrium`
370
+ * `Leftrightarrow`
371
+ * `leftsquigarrow`
372
+ * `dashrightarrow`
373
+ * `rightdasharrow`
374
+ * `leftwhitearrow`
375
+ * `downwhitearrow`
376
+ * `sphericalangle`
377
+ * `NotGreaterLess`
378
+ * `trianglelefteq`
379
+ * `leftthreetimes`
380
+ * `ntriangleright`
381
+ * `APLboxquestion`
382
+ * `lparenextender`
383
+ * `rparenextender`
384
+ * `lbrackextender`
385
+ * `rbrackextender`
386
+ * `vbraceextender`
387
+ * `harrowextender`
388
+ * `blockrighthalf`
389
+ * `blockqtrshaded`
390
+ * `squarenwsefill`
391
+ * `squareneswfill`
392
+ * `mdlgblkdiamond`
393
+ * `mdlgwhtdiamond`
394
+ * `mdlgwhtlozenge`
395
+ * `circlevertfill`
396
+ * `vardiamondsuit`
397
+ * `circledtwodots`
398
+ * `rightouterjoin`
399
+ * `concavediamond`
400
+ * `longrightarrow`
401
+ * `Longrightarrow`
402
+ * `longmappedfrom`
403
+ * `Longmappedfrom`
404
+ * `fdiagovnearrow`
405
+ * `rdiagovsearrow`
406
+ * `acwcirclearrow`
407
+ * `rightarrowplus`
408
+ * `RightVectorBar`
409
+ * `RightTeeVector`
410
+ * `leftbarharpoon`
411
+ * `barleftharpoon`
412
+ * `updownharpoons`
413
+ * `downupharpoons`
414
+ * `rightanglemdot`
415
+ * `triangleserifs`
416
+ * `blackhourglass`
417
+ * `mdlgblklozenge`
418
+ * `bigslopedwedge`
419
+ * `doublebarwedge`
420
+ * `wedgedoublebar`
421
+ * `NestedLessLess`
422
+ * `squaretopblack`
423
+ * `squarebotblack`
424
+ * `equalleftarrow`
425
+ * `ocommatopright`
426
+ * `overleftarrow`
427
+ * `enclosecircle`
428
+ * `enclosesquare`
429
+ * `threeunderdot`
430
+ * `sansLmirrored`
431
+ * `DifferentialD`
432
+ * `leftwavearrow`
433
+ * `leftarrowtail`
434
+ * `hookleftarrow`
435
+ * `looparrowleft`
436
+ * `leftharpoonup`
437
+ * `upharpoonleft`
438
+ * `dashleftarrow`
439
+ * `leftdasharrow`
440
+ * `downdasharrow`
441
+ * `RightArrowBar`
442
+ * `rightarrowbar`
443
+ * `smallsetminus`
444
+ * `vysmwhtcircle`
445
+ * `vysmblkcircle`
446
+ * `measuredangle`
447
+ * `wasytherefore`
448
+ * `dotsminusdots`
449
+ * `fallingdotseq`
450
+ * `PrecedesTilde`
451
+ * `SucceedsTilde`
452
+ * `varlrtriangle`
453
+ * `divideontimes`
454
+ * `equalparallel`
455
+ * `ntriangleleft`
456
+ * `APLuparrowbox`
457
+ * `APLboxupcaret`
458
+ * `bdtriplevdash`
459
+ * `blocklefthalf`
460
+ * `mdlgblksquare`
461
+ * `mdlgwhtsquare`
462
+ * `parallelogram`
463
+ * `bigtriangleup`
464
+ * `blacktriangle`
465
+ * `triangleright`
466
+ * `mdlgwhtcircle`
467
+ * `mdlgblkcircle`
468
+ * `inversebullet`
469
+ * `topsemicircle`
470
+ * `botsemicircle`
471
+ * `squareulblack`
472
+ * `squarelrblack`
473
+ * `mdsmwhtsquare`
474
+ * `mdsmblksquare`
475
+ * `sixteenthnote`
476
+ * `Hermaphrodite`
477
+ * `mdsmwhtcircle`
478
+ * `draftingarrow`
479
+ * `leftouterjoin`
480
+ * `fullouterjoin`
481
+ * `longleftarrow`
482
+ * `Longleftarrow`
483
+ * `twoheadmapsto`
484
+ * `uparrowbarred`
485
+ * `rightdotarrow`
486
+ * `cwcirclearrow`
487
+ * `leftarrowplus`
488
+ * `LeftVectorBar`
489
+ * `LeftTeeVector`
490
+ * `upequilibrium`
491
+ * `leftarrowless`
492
+ * `rightfishtail`
493
+ * `mdsmblkcircle`
494
+ * `llparenthesis`
495
+ * `rrparenthesis`
496
+ * `rightanglesqr`
497
+ * `wideangledown`
498
+ * `emptysetocirc`
499
+ * `emptysetoarrl`
500
+ * `circledbslash`
501
+ * `circledbullet`
502
+ * `errbardiamond`
503
+ * `triangleminus`
504
+ * `triangletimes`
505
+ * `shortlefttack`
506
+ * `shortdowntack`
507
+ * `threedotcolon`
508
+ * `biginterleave`
509
+ * `bigtalloblong`
510
+ * `squareurblack`
511
+ * `squarellblack`
512
+ * `vysmblksquare`
513
+ * `vysmwhtsquare`
514
+ * `pentagonblack`
515
+ * `rightarrowgtr`
516
+ * `rightpentagon`
517
+ * `upbackepsilon`
518
+ * `hyphenbullet`
519
+ * `PropertyLine`
520
+ * `updownarrows`
521
+ * `LeftArrowBar`
522
+ * `barleftarrow`
523
+ * `upwhitearrow`
524
+ * `downuparrows`
525
+ * `nvrightarrow`
526
+ * `nVrightarrow`
527
+ * `intclockwise`
528
+ * `cntclockoint`
529
+ * `risingdotseq`
530
+ * `NotLessTilde`
531
+ * `varsubsetneq`
532
+ * `cupleftarrow`
533
+ * `circledequal`
534
+ * `hermitmatrix`
535
+ * `smwhtdiamond`
536
+ * `npreccurlyeq`
537
+ * `nsucccurlyeq`
538
+ * `unicodecdots`
539
+ * `notbackslash`
540
+ * `underbracket`
541
+ * `blocklowhalf`
542
+ * `squarehvfill`
543
+ * `triangledown`
544
+ * `triangleleft`
545
+ * `Diamondblack`
546
+ * `dottedcircle`
547
+ * `trianglecdot`
548
+ * `squareulquad`
549
+ * `squarellquad`
550
+ * `squarelrquad`
551
+ * `squareurquad`
552
+ * `circleulquad`
553
+ * `circlellquad`
554
+ * `circlelrquad`
555
+ * `circleurquad`
556
+ * `bigwhitestar`
557
+ * `invsmileface`
558
+ * `varspadesuit`
559
+ * `varheartsuit`
560
+ * `dingasterisk`
561
+ * `longdivision`
562
+ * `lozengeminus`
563
+ * `longmapsfrom`
564
+ * `Longmapsfrom`
565
+ * `nvRightarrow`
566
+ * `rightbkarrow`
567
+ * `leftdbkarrow`
568
+ * `DownArrowBar`
569
+ * `downarrowbar`
570
+ * `rightdbltail`
571
+ * `rdiagovfdiag`
572
+ * `fdiagovrdiag`
573
+ * `upupharpoons`
574
+ * `leftfishtail`
575
+ * `downfishtail`
576
+ * `lbrackultick`
577
+ * `rbracklrtick`
578
+ * `lbracklltick`
579
+ * `rbrackurtick`
580
+ * `revangleubar`
581
+ * `emptysetobar`
582
+ * `emptysetoarr`
583
+ * `odotslashdot`
584
+ * `ogreaterthan`
585
+ * `triangleodot`
586
+ * `triangleubar`
587
+ * `multimapboth`
588
+ * `lrtriangleeq`
589
+ * `blacklozenge`
590
+ * `errbarsquare`
591
+ * `errbarcircle`
592
+ * `triangleplus`
593
+ * `closedvarcup`
594
+ * `closedvarcap`
595
+ * `wedgeonwedge`
596
+ * `bigslopedvee`
597
+ * `wedgemidvert`
598
+ * `doublebarvee`
599
+ * `veedoublebar`
600
+ * `eqqslantless`
601
+ * `subsetapprox`
602
+ * `supsetapprox`
603
+ * `dottedsquare`
604
+ * `hexagonblack`
605
+ * `mdblkdiamond`
606
+ * `mdwhtdiamond`
607
+ * `mdblklozenge`
608
+ * `mdwhtlozenge`
609
+ * `smblkdiamond`
610
+ * `smblklozenge`
611
+ * `smwhtlozenge`
612
+ * `leftdotarrow`
613
+ * `medwhitestar`
614
+ * `medblackstar`
615
+ * `oturnedcomma`
616
+ * `upvarepsilon`
617
+ * `mathsterling`
618
+ * `smblkcircle`
619
+ * `backtrprime`
620
+ * `caretinsert`
621
+ * `vertoverlay`
622
+ * `asteraccent`
623
+ * `Planckconst`
624
+ * `sansLturned`
625
+ * `ExponetialE`
626
+ * `updownarrow`
627
+ * `nrightarrow`
628
+ * `restriction`
629
+ * `equilibrium`
630
+ * `nRightarrow`
631
+ * `Updownarrow`
632
+ * `Rrightarrow`
633
+ * `nHdownarrow`
634
+ * `updasharrow`
635
+ * `nvleftarrow`
636
+ * `nVleftarrow`
637
+ * `approxident`
638
+ * `corresponds`
639
+ * `GreaterLess`
640
+ * `preccurlyeq`
641
+ * `succcurlyeq`
642
+ * `circledcirc`
643
+ * `circleddash`
644
+ * `curlyeqprec`
645
+ * `curlyeqsucc`
646
+ * `nsqsubseteq`
647
+ * `nsqsupseteq`
648
+ * `sqsubsetneq`
649
+ * `sqsupsetneq`
650
+ * `varisinobar`
651
+ * `varbarwedge`
652
+ * `wasylozenge`
653
+ * `APLnotslash`
654
+ * `invdiameter`
655
+ * `intextender`
656
+ * `overbracket`
657
+ * `blockuphalf`
658
+ * `squarehfill`
659
+ * `squarevfill`
660
+ * `smblksquare`
661
+ * `smwhtsquare`
662
+ * `vartriangle`
663
+ * `RIGHTcircle`
664
+ * `RIGHTCIRCLE`
665
+ * `smwhtcircle`
666
+ * `lgwhtcircle`
667
+ * `mdwhtsquare`
668
+ * `blacksquare`
669
+ * `mdblksquare`
670
+ * `blacksmiley`
671
+ * `sagittarius`
672
+ * `capricornus`
673
+ * `diamondsuit`
674
+ * `varclubsuit`
675
+ * `quarternote`
676
+ * `mdwhtcircle`
677
+ * `mdblkcircle`
678
+ * `ballotcheck`
679
+ * `circledstar`
680
+ * `arrowbullet`
681
+ * `threedangle`
682
+ * `diamondcdot`
683
+ * `multimapinv`
684
+ * `nvLeftarrow`
685
+ * `leftbkarrow`
686
+ * `leftdbltail`
687
+ * `seovnearrow`
688
+ * `neovsearrow`
689
+ * `neovnwarrow`
690
+ * `nwovnearrow`
691
+ * `rightarrowx`
692
+ * `wideangleup`
693
+ * `revemptyset`
694
+ * `circledvert`
695
+ * `circledless`
696
+ * `gleichstark`
697
+ * `ruledelayed`
698
+ * `lcurvyangle`
699
+ * `rcurvyangle`
700
+ * `otimeslhrim`
701
+ * `otimesrhrim`
702
+ * `midbarwedge`
703
+ * `simminussim`
704
+ * `eqslantless`
705
+ * `eqqslantgtr`
706
+ * `precnapprox`
707
+ * `succnapprox`
708
+ * `shortuptack`
709
+ * `lgblksquare`
710
+ * `lgwhtsquare`
711
+ * `lgblkcircle`
712
+ * `blkhorzoval`
713
+ * `whthorzoval`
714
+ * `blkvertoval`
715
+ * `whtvertoval`
716
+ * `RRightarrow`
717
+ * `smwhitestar`
718
+ * `backepsilon`
719
+ * `varepsilon`
720
+ * `wideutilde`
721
+ * `upvartheta`
722
+ * `upoldKoppa`
723
+ * `upoldkoppa`
724
+ * `upvarkappa`
725
+ * `upvarTheta`
726
+ * `upvarsigma`
727
+ * `octothorpe`
728
+ * `mathdollar`
729
+ * `twolowline`
730
+ * `backdprime`
731
+ * `Eulerconst`
732
+ * `turnediota`
733
+ * `rightarrow`
734
+ * `nleftarrow`
735
+ * `mappedfrom`
736
+ * `upuparrows`
737
+ * `nLeftarrow`
738
+ * `Rightarrow`
739
+ * `Lleftarrow`
740
+ * `complement`
741
+ * `varnothing`
742
+ * `fourthroot`
743
+ * `rightangle`
744
+ * `Proportion`
745
+ * `sqsubseteq`
746
+ * `sqsupseteq`
747
+ * `circledast`
748
+ * `curlywedge`
749
+ * `conictaper`
750
+ * `APLcomment`
751
+ * `lparenuend`
752
+ * `lparenlend`
753
+ * `rparenuend`
754
+ * `rparenlend`
755
+ * `lbrackuend`
756
+ * `lbracklend`
757
+ * `rbrackuend`
758
+ * `rbracklend`
759
+ * `lbraceuend`
760
+ * `lbracelend`
761
+ * `rbraceuend`
762
+ * `rbracelend`
763
+ * `lmoustache`
764
+ * `rmoustache`
765
+ * `sqrtbottom`
766
+ * `underparen`
767
+ * `underbrace`
768
+ * `hrectangle`
769
+ * `vrectangle`
770
+ * `LEFTcircle`
771
+ * `LEFTCIRCLE`
772
+ * `ultriangle`
773
+ * `urtriangle`
774
+ * `lltriangle`
775
+ * `lrtriangle`
776
+ * `CheckedBox`
777
+ * `pointright`
778
+ * `vardiamond`
779
+ * `eighthnote`
780
+ * `subsetcirc`
781
+ * `supsetcirc`
782
+ * `Diamonddot`
783
+ * `DDownarrow`
784
+ * `longmapsto`
785
+ * `Longmapsto`
786
+ * `Mappedfrom`
787
+ * `Ddownarrow`
788
+ * `UpArrowBar`
789
+ * `baruparrow`
790
+ * `rightimply`
791
+ * `upfishtail`
792
+ * `lbrackubar`
793
+ * `rbrackubar`
794
+ * `lparenless`
795
+ * `Rparenless`
796
+ * `lblkbrbrak`
797
+ * `rblkbrbrak`
798
+ * `circlehbar`
799
+ * `circledgtr`
800
+ * `doubleplus`
801
+ * `tripleplus`
802
+ * `plussubtwo`
803
+ * `commaminus`
804
+ * `minusfdots`
805
+ * `minusrdots`
806
+ * `opluslhrim`
807
+ * `oplusrhrim`
808
+ * `smashtimes`
809
+ * `cupovercap`
810
+ * `capovercup`
811
+ * `veeonwedge`
812
+ * `veemidvert`
813
+ * `equivVvert`
814
+ * `lessapprox`
815
+ * `lesseqqgtr`
816
+ * `gtreqqless`
817
+ * `eqslantgtr`
818
+ * `rightslice`
819
+ * `precapprox`
820
+ * `succapprox`
821
+ * `subsetplus`
822
+ * `supsetplus`
823
+ * `subsetneqq`
824
+ * `supsetneqq`
825
+ * `interleave`
826
+ * `talloblong`
827
+ * `varhexagon`
828
+ * `leftarrowx`
829
+ * `LLeftarrow`
830
+ * `postalmark`
831
+ * `underline`
832
+ * `upEpsilon`
833
+ * `upOmicron`
834
+ * `upUpsilon`
835
+ * `upepsilon`
836
+ * `upomicron`
837
+ * `upupsilon`
838
+ * `upvarbeta`
839
+ * `upDigamma`
840
+ * `updigamma`
841
+ * `ampersand`
842
+ * `mathslash`
843
+ * `mathcolon`
844
+ * `semicolon`
845
+ * `backslash`
846
+ * `backprime`
847
+ * `tieconcat`
848
+ * `fracslash`
849
+ * `Angstroem`
850
+ * `leftarrow`
851
+ * `downarrow`
852
+ * `lightning`
853
+ * `rightturn`
854
+ * `Leftarrow`
855
+ * `Downarrow`
856
+ * `nHuparrow`
857
+ * `dasharrow`
858
+ * `partialup`
859
+ * `increment`
860
+ * `nparallel`
861
+ * `clockoint`
862
+ * `therefore`
863
+ * `mathratio`
864
+ * `dashcolon`
865
+ * `triangleq`
866
+ * `nleqslant`
867
+ * `ngeqslant`
868
+ * `nsubseteq`
869
+ * `nsupseteq`
870
+ * `subsetneq`
871
+ * `supsetneq`
872
+ * `backsimeq`
873
+ * `pitchfork`
874
+ * `lesseqgtr`
875
+ * `gtreqless`
876
+ * `varniobar`
877
+ * `bagmember`
878
+ * `sqlozenge`
879
+ * `turnednot`
880
+ * `intbottom`
881
+ * `lbracemid`
882
+ * `rbracemid`
883
+ * `sumbottom`
884
+ * `lvboxline`
885
+ * `rvboxline`
886
+ * `overparen`
887
+ * `wideparen`
888
+ * `overbrace`
889
+ * `trapezium`
890
+ * `accurrent`
891
+ * `blockfull`
892
+ * `radiation`
893
+ * `biohazard`
894
+ * `smileface`
895
+ * `rightmoon`
896
+ * `spadesuit`
897
+ * `heartsuit`
898
+ * `medbullet`
899
+ * `checkmark`
900
+ * `DashVDash`
901
+ * `dashVdash`
902
+ * `vlongdash`
903
+ * `longdashv`
904
+ * `llbracket`
905
+ * `rrbracket`
906
+ * `impliedby`
907
+ * `righttail`
908
+ * `nwsearrow`
909
+ * `neswarrow`
910
+ * `hknwarrow`
911
+ * `hknearrow`
912
+ * `typecolon`
913
+ * `langledot`
914
+ * `rangledot`
915
+ * `rparengtr`
916
+ * `Lparengtr`
917
+ * `fourvdots`
918
+ * `turnangle`
919
+ * `angleubar`
920
+ * `olessthan`
921
+ * `boxbslash`
922
+ * `boxcircle`
923
+ * `triangles`
924
+ * `hourglass`
925
+ * `bigotimes`
926
+ * `bigcupdot`
927
+ * `conjquant`
928
+ * `disjquant`
929
+ * `modtwosum`
930
+ * `otimeshat`
931
+ * `cupbarcap`
932
+ * `capbarcup`
933
+ * `wedgeodot`
934
+ * `midbarvee`
935
+ * `varveebar`
936
+ * `equivVert`
937
+ * `hatapprox`
938
+ * `approxeqq`
939
+ * `gtrapprox`
940
+ * `leftslice`
941
+ * `subsetdot`
942
+ * `supsetdot`
943
+ * `subseteqq`
944
+ * `supseteqq`
945
+ * `leqqslant`
946
+ * `geqqslant`
947
+ * `horizbar`
948
+ * `Question`
949
+ * `medspace`
950
+ * `Angstrom`
951
+ * `ComplexI`
952
+ * `ComplexJ`
953
+ * `mapsfrom`
954
+ * `MapsDown`
955
+ * `mapsdown`
956
+ * `linefeed`
957
+ * `leftturn`
958
+ * `divslash`
959
+ * `cuberoot`
960
+ * `parallel`
961
+ * `dotminus`
962
+ * `invlazys`
963
+ * `sinewave`
964
+ * `approxeq`
965
+ * `backcong`
966
+ * `dotequal`
967
+ * `doteqdot`
968
+ * `coloneqq`
969
+ * `eqqcolon`
970
+ * `notasymp`
971
+ * `nlesssim`
972
+ * `nlessgtr`
973
+ * `ngtrless`
974
+ * `subseteq`
975
+ * `supseteq`
976
+ * `sqsubset`
977
+ * `sqsupset`
978
+ * `boxminus`
979
+ * `boxtimes`
980
+ * `multimap`
981
+ * `intercal`
982
+ * `barwedge`
983
+ * `bigwedge`
984
+ * `curlyvee`
985
+ * `precnsim`
986
+ * `succnsim`
987
+ * `varisins`
988
+ * `isinobar`
989
+ * `diameter`
990
+ * `profline`
991
+ * `profsurf`
992
+ * `viewdata`
993
+ * `ulcorner`
994
+ * `urcorner`
995
+ * `llcorner`
996
+ * `lrcorner`
997
+ * `notslash`
998
+ * `APLinput`
999
+ * `bbrktbrk`
1000
+ * `elinters`
1001
+ * `triangle`
1002
+ * `bullseye`
1003
+ * `astrosun`
1004
+ * `steaming`
1005
+ * `leftmoon`
1006
+ * `varEarth`
1007
+ * `aquarius`
1008
+ * `clubsuit`
1009
+ * `varspade`
1010
+ * `varheart`
1011
+ * `twonotes`
1012
+ * `acidfree`
1013
+ * `bsolhsub`
1014
+ * `wedgedot`
1015
+ * `pullback`
1016
+ * `UUparrow`
1017
+ * `Mapsfrom`
1018
+ * `Uuparrow`
1019
+ * `drbkarow`
1020
+ * `lefttail`
1021
+ * `hksearow`
1022
+ * `hkswarow`
1023
+ * `strictfi`
1024
+ * `strictif`
1025
+ * `revangle`
1026
+ * `boxslash`
1027
+ * `boxonbox`
1028
+ * `rtriltri`
1029
+ * `lfbowtie`
1030
+ * `rfbowtie`
1031
+ * `lvzigzag`
1032
+ * `rvzigzag`
1033
+ * `Lvzigzag`
1034
+ * `Rvzigzag`
1035
+ * `tieinfty`
1036
+ * `smeparsl`
1037
+ * `eqvparsl`
1038
+ * `setminus`
1039
+ * `bigoplus`
1040
+ * `biguplus`
1041
+ * `bigsqcap`
1042
+ * `bigsqcup`
1043
+ * `bigtimes`
1044
+ * `cirfnint`
1045
+ * `rppolint`
1046
+ * `scpolint`
1047
+ * `pointint`
1048
+ * `intlarhk`
1049
+ * `zproject`
1050
+ * `ringplus`
1051
+ * `plustrif`
1052
+ * `minusdot`
1053
+ * `vectimes`
1054
+ * `dottimes`
1055
+ * `timesbar`
1056
+ * `intprodr`
1057
+ * `capwedge`
1058
+ * `veeonvee`
1059
+ * `wedgebar`
1060
+ * `dotequiv`
1061
+ * `simrdots`
1062
+ * `Coloneqq`
1063
+ * `leqslant`
1064
+ * `geqslant`
1065
+ * `lesdotor`
1066
+ * `gesdotol`
1067
+ * `lnapprox`
1068
+ * `gnapprox`
1069
+ * `precneqq`
1070
+ * `succneqq`
1071
+ * `forksnot`
1072
+ * `varVdash`
1073
+ * `pentagon`
1074
+ * `mathring`
1075
+ * `underbar`
1076
+ * `upLambda`
1077
+ * `uplambda`
1078
+ * `varsigma`
1079
+ * `upvarphi`
1080
+ * `vartheta`
1081
+ * `upStigma`
1082
+ * `upstigma`
1083
+ * `varkappa`
1084
+ * `upvarrho`
1085
+ * `question`
1086
+ * `mathcent`
1087
+ * `sterling`
1088
+ * `circledR`
1089
+ * `ddagger`
1090
+ * `trprime`
1091
+ * `closure`
1092
+ * `annuity`
1093
+ * `uparrow`
1094
+ * `nwarrow`
1095
+ * `nearrow`
1096
+ * `searrow`
1097
+ * `swarrow`
1098
+ * `Uparrow`
1099
+ * `Nwarrow`
1100
+ * `Nearrow`
1101
+ * `Searrow`
1102
+ * `Swarrow`
1103
+ * `partial`
1104
+ * `nexists`
1105
+ * `smallin`
1106
+ * `smallni`
1107
+ * `dotplus`
1108
+ * `dbloint`
1109
+ * `because`
1110
+ * `eqcolon`
1111
+ * `backsim`
1112
+ * `simneqq`
1113
+ * `napprox`
1114
+ * `coloneq`
1115
+ * `varsdef`
1116
+ * `questeq`
1117
+ * `between`
1118
+ * `lesssim`
1119
+ * `ngtrsim`
1120
+ * `lessgtr`
1121
+ * `gtrless`
1122
+ * `precsim`
1123
+ * `succsim`
1124
+ * `nsubset`
1125
+ * `nsupset`
1126
+ * `boxplus`
1127
+ * `imageof`
1128
+ * `diamond`
1129
+ * `lrtimes`
1130
+ * `lessdot`
1131
+ * `npreceq`
1132
+ * `nsucceq`
1133
+ * `isindot`
1134
+ * `hexagon`
1135
+ * `obrbrak`
1136
+ * `ubrbrak`
1137
+ * `benzenr`
1138
+ * `squoval`
1139
+ * `Diamond`
1140
+ * `fisheye`
1141
+ * `lozenge`
1142
+ * `bigstar`
1143
+ * `yinyang`
1144
+ * `frownie`
1145
+ * `sadface`
1146
+ * `mercury`
1147
+ * `Mercury`
1148
+ * `jupiter`
1149
+ * `Jupiter`
1150
+ * `neptune`
1151
+ * `Neptune`
1152
+ * `scorpio`
1153
+ * `Scorpio`
1154
+ * `varclub`
1155
+ * `natural`
1156
+ * `recycle`
1157
+ * `diceiii`
1158
+ * `warning`
1159
+ * `medcirc`
1160
+ * `ballotx`
1161
+ * `maltese`
1162
+ * `varstar`
1163
+ * `lbrbrak`
1164
+ * `rbrbrak`
1165
+ * `suphsol`
1166
+ * `pushout`
1167
+ * `Lbrbrak`
1168
+ * `Rbrbrak`
1169
+ * `implies`
1170
+ * `dbkarow`
1171
+ * `leadsto`
1172
+ * `subrarr`
1173
+ * `suplarr`
1174
+ * `llangle`
1175
+ * `rrangle`
1176
+ * `vzigzag`
1177
+ * `obslash`
1178
+ * `olcross`
1179
+ * `cirscir`
1180
+ * `boxdiag`
1181
+ * `fbowtie`
1182
+ * `lftimes`
1183
+ * `rftimes`
1184
+ * `nvinfty`
1185
+ * `dualmap`
1186
+ * `shuffle`
1187
+ * `thermod`
1188
+ * `rsolbar`
1189
+ * `bigodot`
1190
+ * `varprod`
1191
+ * `npolint`
1192
+ * `project`
1193
+ * `plushat`
1194
+ * `simplus`
1195
+ * `plusdot`
1196
+ * `plussim`
1197
+ * `intprod`
1198
+ * `twocups`
1199
+ * `twocaps`
1200
+ * `veeodot`
1201
+ * `congdot`
1202
+ * `eqqplus`
1203
+ * `pluseqq`
1204
+ * `Coloneq`
1205
+ * `ddotseq`
1206
+ * `equivDD`
1207
+ * `ltquest`
1208
+ * `gtquest`
1209
+ * `lesdoto`
1210
+ * `gesdoto`
1211
+ * `eqqless`
1212
+ * `simless`
1213
+ * `bumpeqq`
1214
+ * `precneq`
1215
+ * `succneq`
1216
+ * `preceqq`
1217
+ * `succeqq`
1218
+ * `llcurly`
1219
+ * `ggcurly`
1220
+ * `submult`
1221
+ * `supmult`
1222
+ * `subedot`
1223
+ * `supedot`
1224
+ * `lsqhook`
1225
+ * `rsqhook`
1226
+ * `suphsub`
1227
+ * `supdsub`
1228
+ * `topfork`
1229
+ * `revnmid`
1230
+ * `nhVvert`
1231
+ * `lllnest`
1232
+ * `gggnest`
1233
+ * `trslash`
1234
+ * `hzigzag`
1235
+ * `overbar`
1236
+ * `upAlpha`
1237
+ * `upGamma`
1238
+ * `upDelta`
1239
+ * `upTheta`
1240
+ * `upKappa`
1241
+ * `upSigma`
1242
+ * `Upsilon`
1243
+ * `upOmega`
1244
+ * `upalpha`
1245
+ * `upgamma`
1246
+ * `updelta`
1247
+ * `uptheta`
1248
+ * `upkappa`
1249
+ * `upsigma`
1250
+ * `upsilon`
1251
+ * `upomega`
1252
+ * `varbeta`
1253
+ * `upvarpi`
1254
+ * `Digamma`
1255
+ * `digamma`
1256
+ * `upKoppa`
1257
+ * `upkoppa`
1258
+ * `upSampi`
1259
+ * `upsampi`
1260
+ * `epsilon`
1261
+ * `percent`
1262
+ * `greater`
1263
+ * `sptilde`
1264
+ * `matheth`
1265
+ * `dagger`
1266
+ * `bullet`
1267
+ * `second`
1268
+ * `dprime`
1269
+ * `Exclam`
1270
+ * `fourth`
1271
+ * `qprime`
1272
+ * `ddddot`
1273
+ * `hslash`
1274
+ * `daleth`
1275
+ * `invamp`
1276
+ * `MapsUp`
1277
+ * `mapsup`
1278
+ * `mapsto`
1279
+ * `forall`
1280
+ * `exists`
1281
+ * `coprod`
1282
+ * `propto`
1283
+ * `oiiint`
1284
+ * `nsimeq`
1285
+ * `approx`
1286
+ * `Bumpeq`
1287
+ * `bumpeq`
1288
+ * `eqcirc`
1289
+ * `circeq`
1290
+ * `wedgeq`
1291
+ * `stareq`
1292
+ * `measeq`
1293
+ * `nequiv`
1294
+ * `nasymp`
1295
+ * `apprle`
1296
+ * `gtrsim`
1297
+ * `apprge`
1298
+ * `subset`
1299
+ * `supset`
1300
+ * `cupdot`
1301
+ * `ominus`
1302
+ * `otimes`
1303
+ * `oslash`
1304
+ * `boxdot`
1305
+ * `assert`
1306
+ * `models`
1307
+ * `Vvdash`
1308
+ * `nvdash`
1309
+ * `nvDash`
1310
+ * `nVdash`
1311
+ * `nVDash`
1312
+ * `prurel`
1313
+ * `scurel`
1314
+ * `origof`
1315
+ * `veebar`
1316
+ * `barvee`
1317
+ * `bigvee`
1318
+ * `bigcap`
1319
+ * `bigcup`
1320
+ * `bowtie`
1321
+ * `ltimes`
1322
+ * `rtimes`
1323
+ * `Subset`
1324
+ * `Supset`
1325
+ * `gtrdot`
1326
+ * `eqless`
1327
+ * `nunlhd`
1328
+ * `nunrhd`
1329
+ * `iddots`
1330
+ * `isinvb`
1331
+ * `varnis`
1332
+ * `niobar`
1333
+ * `lfloor`
1334
+ * `rfloor`
1335
+ * `invneg`
1336
+ * `invnot`
1337
+ * `inttop`
1338
+ * `topbot`
1339
+ * `APLinv`
1340
+ * `APLlog`
1341
+ * `sumtop`
1342
+ * `Circle`
1343
+ * `CIRCLE`
1344
+ * `boxbar`
1345
+ * `square`
1346
+ * `Square`
1347
+ * `danger`
1348
+ * `smiley`
1349
+ * `female`
1350
+ * `saturn`
1351
+ * `Saturn`
1352
+ * `uranus`
1353
+ * `Uranus`
1354
+ * `taurus`
1355
+ * `Taurus`
1356
+ * `gemini`
1357
+ * `Gemini`
1358
+ * `cancer`
1359
+ * `pisces`
1360
+ * `diceii`
1361
+ * `diceiv`
1362
+ * `dicevi`
1363
+ * `anchor`
1364
+ * `swords`
1365
+ * `neuter`
1366
+ * `pencil`
1367
+ * `veedot`
1368
+ * `bigbot`
1369
+ * `bigtop`
1370
+ * `cirbot`
1371
+ * `lBrack`
1372
+ * `Lbrack`
1373
+ * `rBrack`
1374
+ * `Rbrack`
1375
+ * `langle`
1376
+ * `rangle`
1377
+ * `lAngle`
1378
+ * `rAngle`
1379
+ * `lgroup`
1380
+ * `rgroup`
1381
+ * `Mapsto`
1382
+ * `ltlarr`
1383
+ * `gtrarr`
1384
+ * `lBrace`
1385
+ * `rBrace`
1386
+ * `Lparen`
1387
+ * `lParen`
1388
+ * `Rparen`
1389
+ * `rParen`
1390
+ * `angles`
1391
+ * `angdnr`
1392
+ * `gtlpar`
1393
+ * `boxast`
1394
+ * `boxbox`
1395
+ * `ltrivb`
1396
+ * `vbrtri`
1397
+ * `iinfin`
1398
+ * `laplac`
1399
+ * `eparsl`
1400
+ * `tminus`
1401
+ * `sumint`
1402
+ * `iiiint`
1403
+ * `intbar`
1404
+ * `intBar`
1405
+ * `sqrint`
1406
+ * `intcap`
1407
+ * `intcup`
1408
+ * `lowint`
1409
+ * `btimes`
1410
+ * `Otimes`
1411
+ * `capdot`
1412
+ * `uminus`
1413
+ * `barcup`
1414
+ * `barcap`
1415
+ * `cupvee`
1416
+ * `dotsim`
1417
+ * `eqqsim`
1418
+ * `eqeqeq`
1419
+ * `lesdot`
1420
+ * `gesdot`
1421
+ * `lesges`
1422
+ * `gesles`
1423
+ * `elsdot`
1424
+ * `egsdot`
1425
+ * `eqqgtr`
1426
+ * `simgtr`
1427
+ * `preceq`
1428
+ * `succeq`
1429
+ * `subsim`
1430
+ * `supsim`
1431
+ * `subsup`
1432
+ * `supsub`
1433
+ * `subsub`
1434
+ * `supsup`
1435
+ * `vDdash`
1436
+ * `cirmid`
1437
+ * `midcir`
1438
+ * `topcir`
1439
+ * `parsim`
1440
+ * `sslash`
1441
+ * `ovhook`
1442
+ * `candra`
1443
+ * `droang`
1444
+ * `utilde`
1445
+ * `upBeta`
1446
+ * `upZeta`
1447
+ * `upIota`
1448
+ * `Lambda`
1449
+ * `upbeta`
1450
+ * `upzeta`
1451
+ * `upiota`
1452
+ * `lambda`
1453
+ * `varphi`
1454
+ * `Stigma`
1455
+ * `stigma`
1456
+ * `varrho`
1457
+ * `exclam`
1458
+ * `lparen`
1459
+ * `rparen`
1460
+ * `period`
1461
+ * `atsign`
1462
+ * `lbrack`
1463
+ * `rbrack`
1464
+ * `lbrace`
1465
+ * `rbrace`
1466
+ * `pounds`
1467
+ * `spddot`
1468
+ * `qquad`
1469
+ * `ldots`
1470
+ * `prime`
1471
+ * `third`
1472
+ * `dddot`
1473
+ * `DDDot`
1474
+ * `Euler`
1475
+ * `tcohm`
1476
+ * `aleph`
1477
+ * `gimel`
1478
+ * `upand`
1479
+ * `nabla`
1480
+ * `notin`
1481
+ * `notni`
1482
+ * `minus`
1483
+ * `slash`
1484
+ * `infty`
1485
+ * `angle`
1486
+ * `wedge`
1487
+ * `iiint`
1488
+ * `oiint`
1489
+ * `Colon`
1490
+ * `eqsim`
1491
+ * `simeq`
1492
+ * `nsime`
1493
+ * `ncong`
1494
+ * `asymp`
1495
+ * `doteq`
1496
+ * `Doteq`
1497
+ * `arceq`
1498
+ * `veeeq`
1499
+ * `eqdef`
1500
+ * `equiv`
1501
+ * `Equiv`
1502
+ * `lneqq`
1503
+ * `gneqq`
1504
+ * `nless`
1505
+ * `nprec`
1506
+ * `nsucc`
1507
+ * `uplus`
1508
+ * `sqcap`
1509
+ * `sqcup`
1510
+ * `oplus`
1511
+ * `vdash`
1512
+ * `dashv`
1513
+ * `vDash`
1514
+ * `Vdash`
1515
+ * `VDash`
1516
+ * `unlhd`
1517
+ * `unrhd`
1518
+ * `eqgtr`
1519
+ * `lnsim`
1520
+ * `gnsim`
1521
+ * `vdots`
1522
+ * `cdots`
1523
+ * `adots`
1524
+ * `ddots`
1525
+ * `disin`
1526
+ * `isins`
1527
+ * `barin`
1528
+ * `isinE`
1529
+ * `house`
1530
+ * `lceil`
1531
+ * `rceil`
1532
+ * `frown`
1533
+ * `smile`
1534
+ * `strns`
1535
+ * `fltns`
1536
+ * `ularc`
1537
+ * `urarc`
1538
+ * `lrarc`
1539
+ * `llarc`
1540
+ * `skull`
1541
+ * `Venus`
1542
+ * `earth`
1543
+ * `pluto`
1544
+ * `Pluto`
1545
+ * `aries`
1546
+ * `Aries`
1547
+ * `virgo`
1548
+ * `libra`
1549
+ * `Libra`
1550
+ * `sharp`
1551
+ * `dicei`
1552
+ * `dicev`
1553
+ * `psurj`
1554
+ * `Vvert`
1555
+ * `lblot`
1556
+ * `rblot`
1557
+ * `operp`
1558
+ * `zhide`
1559
+ * `xbsol`
1560
+ * `tplus`
1561
+ * `awint`
1562
+ * `sqint`
1563
+ * `upint`
1564
+ * `zpipe`
1565
+ * `amalg`
1566
+ * `Sqcap`
1567
+ * `Sqcup`
1568
+ * `Wedge`
1569
+ * `ndres`
1570
+ * `nrres`
1571
+ * `eqdot`
1572
+ * `asteq`
1573
+ * `Equal`
1574
+ * `ltcir`
1575
+ * `gtcir`
1576
+ * `lsime`
1577
+ * `gsime`
1578
+ * `lsimg`
1579
+ * `gsiml`
1580
+ * `simlE`
1581
+ * `simgE`
1582
+ * `lescc`
1583
+ * `gescc`
1584
+ * `csube`
1585
+ * `csupe`
1586
+ * `forkv`
1587
+ * `forks`
1588
+ * `perps`
1589
+ * `dashV`
1590
+ * `Dashv`
1591
+ * `DashV`
1592
+ * `vBarv`
1593
+ * `nhpar`
1594
+ * `hline`
1595
+ * `imath`
1596
+ * `jmath`
1597
+ * `grave`
1598
+ * `acute`
1599
+ * `breve`
1600
+ * `ocirc`
1601
+ * `check`
1602
+ * `Gamma`
1603
+ * `Delta`
1604
+ * `upEta`
1605
+ * `Theta`
1606
+ * `upRho`
1607
+ * `Sigma`
1608
+ * `upTau`
1609
+ * `upPhi`
1610
+ * `upChi`
1611
+ * `upPsi`
1612
+ * `Omega`
1613
+ * `alpha`
1614
+ * `gamma`
1615
+ * `delta`
1616
+ * `upeta`
1617
+ * `theta`
1618
+ * `kappa`
1619
+ * `uprho`
1620
+ * `sigma`
1621
+ * `uptau`
1622
+ * `upchi`
1623
+ * `uppsi`
1624
+ * `omega`
1625
+ * `upphi`
1626
+ * `varpi`
1627
+ * `Qoppa`
1628
+ * `Koppa`
1629
+ * `qoppa`
1630
+ * `koppa`
1631
+ * `Sampi`
1632
+ * `sampi`
1633
+ * `comma`
1634
+ * `colon`
1635
+ * `equal`
1636
+ * `sphat`
1637
+ * `Micro`
1638
+ * `cdotp`
1639
+ * `times`
1640
+ * `lVert`
1641
+ * `rVert`
1642
+ * `quad`
1643
+ * `Vert`
1644
+ * `euro`
1645
+ * `lvec`
1646
+ * `LVec`
1647
+ * `Finv`
1648
+ * `beth`
1649
+ * `Game`
1650
+ * `gets`
1651
+ * `tsur`
1652
+ * `tinj`
1653
+ * `dlsh`
1654
+ * `Ldsh`
1655
+ * `drsh`
1656
+ * `Rdsh`
1657
+ * `pfun`
1658
+ * `ffun`
1659
+ * `nexi`
1660
+ * `owns`
1661
+ * `circ`
1662
+ * `nmid`
1663
+ * `land`
1664
+ * `iint`
1665
+ * `oint`
1666
+ * `nsim`
1667
+ * `cong`
1668
+ * `sdef`
1669
+ * `leqq`
1670
+ * `geqq`
1671
+ * `ngtr`
1672
+ * `nleq`
1673
+ * `ngeq`
1674
+ * `prec`
1675
+ * `succ`
1676
+ * `buni`
1677
+ * `odot`
1678
+ * `dint`
1679
+ * `duni`
1680
+ * `cdot`
1681
+ * `star`
1682
+ * `hash`
1683
+ * `nisd`
1684
+ * `obar`
1685
+ * `rres`
1686
+ * `dres`
1687
+ * `XBox`
1688
+ * `male`
1689
+ * `Mars`
1690
+ * `flat`
1691
+ * `perp`
1692
+ * `Lbag`
1693
+ * `lbag`
1694
+ * `Rbag`
1695
+ * `rbag`
1696
+ * `upin`
1697
+ * `lang`
1698
+ * `rang`
1699
+ * `psur`
1700
+ * `pinj`
1701
+ * `finj`
1702
+ * `tona`
1703
+ * `toea`
1704
+ * `tosa`
1705
+ * `towa`
1706
+ * `VERT`
1707
+ * `spot`
1708
+ * `limg`
1709
+ * `rimg`
1710
+ * `obot`
1711
+ * `cirE`
1712
+ * `dsol`
1713
+ * `xsol`
1714
+ * `hide`
1715
+ * `fint`
1716
+ * `intx`
1717
+ * `Join`
1718
+ * `zcmp`
1719
+ * `semi`
1720
+ * `odiv`
1721
+ * `fcmp`
1722
+ * `comp`
1723
+ * `dsub`
1724
+ * `rsub`
1725
+ * `eqeq`
1726
+ * `Same`
1727
+ * `lneq`
1728
+ * `gneq`
1729
+ * `ltcc`
1730
+ * `gtcc`
1731
+ * `smte`
1732
+ * `late`
1733
+ * `Prec`
1734
+ * `Succ`
1735
+ * `csub`
1736
+ * `csup`
1737
+ * `mlcp`
1738
+ * `Barv`
1739
+ * `vBar`
1740
+ * `barV`
1741
+ * `Vbar`
1742
+ * `Perp`
1743
+ * `bNot`
1744
+ * `Zbar`
1745
+ * `ddot`
1746
+ * `DDot`
1747
+ * `ring`
1748
+ * `upMu`
1749
+ * `upNu`
1750
+ * `upXi`
1751
+ * `upPi`
1752
+ * `beta`
1753
+ * `zeta`
1754
+ * `iota`
1755
+ * `upmu`
1756
+ * `upnu`
1757
+ * `upxi`
1758
+ * `uppi`
1759
+ * `plus`
1760
+ * `less`
1761
+ * `vert`
1762
+ * `cent`
1763
+ * `lnot`
1764
+ * `tcmu`
1765
+ * `cat`
1766
+ * `Vec`
1767
+ * `ell`
1768
+ * `mho`
1769
+ * `Mho`
1770
+ * `Yup`
1771
+ * `rel`
1772
+ * `Lsh`
1773
+ * `Rsh`
1774
+ * `exi`
1775
+ * `nin`
1776
+ * `nni`
1777
+ * `QED`
1778
+ * `ast`
1779
+ * `mid`
1780
+ * `vee`
1781
+ * `lor`
1782
+ * `cap`
1783
+ * `cup`
1784
+ * `int`
1785
+ * `sim`
1786
+ * `neq`
1787
+ * `leq`
1788
+ * `geq`
1789
+ * `top`
1790
+ * `bot`
1791
+ * `Cap`
1792
+ * `Cup`
1793
+ * `lll`
1794
+ * `ggg`
1795
+ * `nis`
1796
+ * `RHD`
1797
+ * `rhd`
1798
+ * `LHD`
1799
+ * `lhd`
1800
+ * `Sun`
1801
+ * `sun`
1802
+ * `leo`
1803
+ * `Leo`
1804
+ * `iff`
1805
+ * `bij`
1806
+ * `Vee`
1807
+ * `lgE`
1808
+ * `glE`
1809
+ * `glj`
1810
+ * `gla`
1811
+ * `smt`
1812
+ * `lat`
1813
+ * `Top`
1814
+ * `Bot`
1815
+ * `Not`
1816
+ * `dot`
1817
+ * `Dot`
1818
+ * `not`
1819
+ * `Phi`
1820
+ * `Psi`
1821
+ * `eta`
1822
+ * `rho`
1823
+ * `tau`
1824
+ * `chi`
1825
+ * `psi`
1826
+ * `phi`
1827
+ * `yen`
1828
+ * `neg`
1829
+ * `eth`
1830
+ * `div`
1831
+ * `Xi`
1832
+ * `Im`
1833
+ * `wp`
1834
+ * `Re`
1835
+ * `DD`
1836
+ * `dd`
1837
+ * `ee`
1838
+ * `ii`
1839
+ * `jj`
1840
+ * `to`
1841
+ * `in`
1842
+ * `ni`
1843
+ * `mp`
1844
+ * `AC`
1845
+ * `wr`
1846
+ * `ne`
1847
+ * `le`
1848
+ * `ge`
1849
+ * `ll`
1850
+ * `gg`
1851
+ * `Lt`
1852
+ * `Gt`
1853
+ * `Pi`
1854
+ * `mu`
1855
+ * `nu`
1856
+ * `xi`
1857
+ * `pi`
1858
+ * `pm`
1859
+ * `-`
1860
+ * `'`
1861
+ * `!`
1862
+ * `#`
1863
+ * `$`
1864
+ * `%`
1865
+ * `&`
1866
+ * `*`
1867
+ * `+`
1868
+ * `,`
1869
+ * `.`
1870
+ * `/`
1871
+ * `:`
1872
+ * `;`
1873
+ * `<`
1874
+ * `=`
1875
+ * `>`
1876
+ * `?`
1877
+ * `@`
1878
+ * `|`
1879
+ * `_`