-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp
790 lines (790 loc) · 43.8 KB
/
temp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
tex = tex.replace('\\#' , '#')
tex = tex.replace('\\$' , '$')
tex = tex.replace('\\%' , '%')
tex = tex.replace('\\&' , '&')
tex = tex.replace('\\lbrack' , '[')
tex = tex.replace('\\backslash' , '\\)
tex = tex.replace('\\rbrack' , ']')
tex = tex.replace('\\_' , '_')
tex = tex.replace('\\{' , '{')
tex = tex.replace('\\}' , '}')
tex = tex.replace('\\sptilde' , '~')
tex = tex.replace('~' , '~')
tex = tex.replace('\\cent' , '¢')
tex = tex.replace('\\pounds' , '£')
tex = tex.replace('\\yen' , '¥')
tex = tex.replace('\\spddot' , '¨')
tex = tex.replace('\\neg' , '¬')
tex = tex.replace('\\lnot' , '¬')
tex = tex.replace('\\circledR' , '®')
tex = tex.replace('\\pm' , '±')
tex = tex.replace('\\Micro' , 'µ')
tex = tex.replace('\\cdotp' , '·')
tex = tex.replace('\\times' , '×')
tex = tex.replace('\\eth' , 'ð')
tex = tex.replace('\\div' , '÷')
tex = tex.replace('\\imath' , '𝚤')
tex = tex.replace('\\Zbar' , 'Ƶ')
tex = tex.replace('\\jmath' , '𝚥')
tex = tex.replace('\\quad' , ' ')
tex = tex.replace('\\qquad' , ' ')
tex = tex.replace('\\horizbar' , '―')
tex = tex.replace('\\|' , '‖')
tex = tex.replace('\\twolowline' , '‗')
tex = tex.replace('\\dagger' , '†')
tex = tex.replace('\\ddagger' , '‡')
tex = tex.replace('\\smblkcircle' , '•')
tex = tex.replace('\\enleadertwodots' , '‥')
tex = tex.replace('\\ldots' , '…')
tex = tex.replace('\\prime' , '′')
tex = tex.replace('\\second' , '″')
tex = tex.replace('\\third' , '‴')
tex = tex.replace('\\backprime' , '‵')
tex = tex.replace('\\backdprime' , '‶')
tex = tex.replace('\\backtrprime' , '‷')
tex = tex.replace('\\caretinsert' , '‸')
tex = tex.replace('\\Exclam' , '‼')
tex = tex.replace('\\cat' , '⁀')
tex = tex.replace('\\hyphenbullet' , '⁃')
tex = tex.replace('\\fracslash' , '⁄')
tex = tex.replace('\\Question' , '⁇')
tex = tex.replace('\\closure' , '⁐')
tex = tex.replace('\\fourth' , '⁗')
tex = tex.replace('\\:' , ' ')
tex = tex.replace('\\euro' , '€')
tex = tex.replace('\\mathord' , '⍹')
tex = tex.replace('\\Euler' , 'ℇ')
tex = tex.replace('\\mathfrak{H}' , 'ℌ')
tex = tex.replace('\\Planckconst' , 'ℎ')
tex = tex.replace('\\hslash' , 'ℏ')
tex = tex.replace('\\Im' , 'ℑ')
tex = tex.replace('\\ell' , 'ℓ')
tex = tex.replace('\\wp' , '℘')
tex = tex.replace('\\Re' , 'ℜ')
tex = tex.replace('\\tcohm' , 'Ω')
tex = tex.replace('\\mho' , '℧')
tex = tex.replace('\\mathfrak{Z}' , 'ℨ')
tex = tex.replace('\\turnediota' , '℩')
tex = tex.replace('\\Angstroem' , 'Å')
tex = tex.replace('\\mathfrak{C}' , 'ℭ')
tex = tex.replace('\\Finv' , 'Ⅎ')
tex = tex.replace('\\aleph' , 'ℵ')
tex = tex.replace('\\beth' , 'ℶ')
tex = tex.replace('\\gimel' , 'ℷ')
tex = tex.replace('\\daleth' , 'ℸ')
tex = tex.replace('\\Game' , '⅁')
tex = tex.replace('\\sansLturned' , '⅂')
tex = tex.replace('\\sansLmirrored' , '⅃')
tex = tex.replace('\\Yup' , '⅄')
tex = tex.replace('\\CapitalDifferentialD' , 'ⅅ')
tex = tex.replace('\\DifferentialD' , 'ⅆ')
tex = tex.replace('\\ExponetialE' , 'ⅇ')
tex = tex.replace('\\ComplexI' , 'ⅈ')
tex = tex.replace('\\ComplexJ' , 'ⅉ')
tex = tex.replace('\\PropertyLine' , '⅊')
tex = tex.replace('\\invamp' , '⅋')
tex = tex.replace('\\hzigzag' , '〰)'
tex = tex.replace('\\mbfscrA' , '𝓐')
tex = tex.replace('\\mbfscrB' , '𝓑')
tex = tex.replace('\\mbfscrC' , '𝓒')
tex = tex.replace('\\mbfscrD' , '𝓓')
tex = tex.replace('\\mbfscrE' , '𝓔')
tex = tex.replace('\\mbfscrF' , '𝓕')
tex = tex.replace('\\mbfscrG' , '𝓖')
tex = tex.replace('\\mbfscrH' , '𝓗')
tex = tex.replace('\\mbfscrI' , '𝓘')
tex = tex.replace('\\mbfscrJ' , '𝓙')
tex = tex.replace('\\mbfscrK' , '𝓚')
tex = tex.replace('\\mbfscrL' , '𝓛')
tex = tex.replace('\\mbfscrM' , '𝓜')
tex = tex.replace('\\mbfscrN' , '𝓝')
tex = tex.replace('\\mbfscrO' , '𝓞')
tex = tex.replace('\\mbfscrP' , '𝓟')
tex = tex.replace('\\mbfscrQ' , '𝓠')
tex = tex.replace('\\mbfscrR' , '𝓡')
tex = tex.replace('\\mbfscrS' , '𝓢')
tex = tex.replace('\\mbfscrT' , '𝓣')
tex = tex.replace('\\mbfscrU' , '𝓤')
tex = tex.replace('\\mbfscrV' , '𝓥')
tex = tex.replace('\\mbfscrW' , '𝓦')
tex = tex.replace('\\mbfscrX' , '𝓧')
tex = tex.replace('\\mbfscrY' , '𝓨')
tex = tex.replace('\\mbfscrZ' , '𝓩')
tex = tex.replace('\\mbfscra' , '𝓪')
tex = tex.replace('\\mbfscrb' , '𝓫')
tex = tex.replace('\\mbfscrc' , '𝓬')
tex = tex.replace('\\mbfscrd' , '𝓭')
tex = tex.replace('\\mbfscre' , '𝓮')
tex = tex.replace('\\mbfscrf' , '𝓯')
tex = tex.replace('\\mbfscrg' , '𝓰')
tex = tex.replace('\\mbfscrh' , '𝓱')
tex = tex.replace('\\mbfscri' , '𝓲')
tex = tex.replace('\\mbfscrj' , '𝓳')
tex = tex.replace('\\mbfscrk' , '𝓴')
tex = tex.replace('\\mbfscrl' , '𝓵')
tex = tex.replace('\\mbfscrm' , '𝓶')
tex = tex.replace('\\mbfscrn' , '𝓷')
tex = tex.replace('\\mbfscro' , '𝓸')
tex = tex.replace('\\mbfscrp' , '𝓹')
tex = tex.replace('\\mbfscrq' , '𝓺')
tex = tex.replace('\\mbfscrr' , '𝓻')
tex = tex.replace('\\mbfscrs' , '𝓼')
tex = tex.replace('\\mbfscrt' , '𝓽')
tex = tex.replace('\\mbfscru' , '𝓾')
tex = tex.replace('\\mbfscrv' , '𝓿')
tex = tex.replace('\\mbfscrw' , '𝔀')
tex = tex.replace('\\mbfscrx' , '𝔁')
tex = tex.replace('\\mbfscry' , '𝔂')
tex = tex.replace('\\mbfscrz' , '𝔃')
tex = tex.replace('\\mathfrak{A}' , '𝔄')
tex = tex.replace('\\mathfrak{B}' , '𝔅')
tex = tex.replace('\\mathfrak{D}' , '𝔇')
tex = tex.replace('\\mathfrak{E}' , '𝔈')
tex = tex.replace('\\mathfrak{F}' , '𝔉')
tex = tex.replace('\\mathfrak{G}' , '𝔊')
tex = tex.replace('\\mathfrak{J}' , '𝔍')
tex = tex.replace('\\mathfrak{K}' , '𝔎')
tex = tex.replace('\\mathfrak{L}' , '𝔏')
tex = tex.replace('\\mathfrak{M}' , '𝔐')
tex = tex.replace('\\mathfrak{N}' , '𝔑')
tex = tex.replace('\\mathfrak{O}' , '𝔒')
tex = tex.replace('\\mathfrak{P}' , '𝔓')
tex = tex.replace('\\mathfrak{Q}' , '𝔔')
tex = tex.replace('\\mathfrak{S}' , '𝔖')
tex = tex.replace('\\mathfrak{T}' , '𝔗')
tex = tex.replace('\\mathfrak{U}' , '𝔘')
tex = tex.replace('\\mathfrak{V}' , '𝔙')
tex = tex.replace('\\mathfrak{W}' , '𝔚')
tex = tex.replace('\\mathfrak{X}' , '𝔛')
tex = tex.replace('\\mathfrak{Y}' , '𝔜')
tex = tex.replace('\\mathfrak{a}' , '𝔞')
tex = tex.replace('\\mathfrak{b}' , '𝔟')
tex = tex.replace('\\mathfrak{c}' , '𝔠')
tex = tex.replace('\\mathfrak{d}' , '𝔡')
tex = tex.replace('\\mathfrak{e}' , '𝔢')
tex = tex.replace('\\mathfrak{f}' , '𝔣')
tex = tex.replace('\\mathfrak{g}' , '𝔤')
tex = tex.replace('\\mathfrak{h}' , '𝔥')
tex = tex.replace('\\mathfrak{i}' , '𝔦')
tex = tex.replace('\\mathfrak{j}' , '𝔧')
tex = tex.replace('\\mathfrak{k}' , '𝔨')
tex = tex.replace('\\mathfrak{l}' , '𝔩')
tex = tex.replace('\\mathfrak{m}' , '𝔪')
tex = tex.replace('\\mathfrak{n}' , '𝔫')
tex = tex.replace('\\mathfrak{o}' , '𝔬')
tex = tex.replace('\\mathfrak{p}' , '𝔭')
tex = tex.replace('\\mathfrak{q}' , '𝔮')
tex = tex.replace('\\mathfrak{r}' , '𝔯')
tex = tex.replace('\\mathfrak{s}' , '𝔰')
tex = tex.replace('\\mathfrak{t}' , '𝔱')
tex = tex.replace('\\mathfrak{u}' , '𝔲')
tex = tex.replace('\\mathfrak{v}' , '𝔳')
tex = tex.replace('\\mathfrak{w}' , '𝔴')
tex = tex.replace('\\mathfrak{x}' , '𝔵')
tex = tex.replace('\\mathfrak{y}' , '𝔶')
tex = tex.replace('\\mathfrak{z}' , '𝔷')
tex = tex.replace('\\mbffrakA' , '𝕬')
tex = tex.replace('\\mbffrakB' , '𝕭')
tex = tex.replace('\\mbffrakC' , '𝕮')
tex = tex.replace('\\mbffrakD' , '𝕯')
tex = tex.replace('\\mbffrakE' , '𝕰')
tex = tex.replace('\\mbffrakF' , '𝕱')
tex = tex.replace('\\mbffrakG' , '𝕲')
tex = tex.replace('\\mbffrakH' , '𝕳')
tex = tex.replace('\\mbffrakI' , '𝕴')
tex = tex.replace('\\mbffrakJ' , '𝕵')
tex = tex.replace('\\mbffrakK' , '𝕶')
tex = tex.replace('\\mbffrakL' , '𝕷')
tex = tex.replace('\\mbffrakM' , '𝕸')
tex = tex.replace('\\mbffrakN' , '𝕹')
tex = tex.replace('\\mbffrakO' , '𝕺')
tex = tex.replace('\\mbffrakP' , '𝕻')
tex = tex.replace('\\mbffrakQ' , '𝕼')
tex = tex.replace('\\mbffrakR' , '𝕽')
tex = tex.replace('\\mbffrakS' , '𝕾')
tex = tex.replace('\\mbffrakT' , '𝕿')
tex = tex.replace('\\mbffrakU' , '𝖀')
tex = tex.replace('\\mbffrakV' , '𝖁')
tex = tex.replace('\\mbffrakW' , '𝖂')
tex = tex.replace('\\mbffrakX' , '𝖃')
tex = tex.replace('\\mbffrakY' , '𝖄')
tex = tex.replace('\\mbffrakZ' , '𝖅')
tex = tex.replace('\\mbffraka' , '𝖆')
tex = tex.replace('\\mbffrakb' , '𝖇')
tex = tex.replace('\\mbffrakc' , '𝖈')
tex = tex.replace('\\mbffrakd' , '𝖉')
tex = tex.replace('\\mbffrake' , '𝖊')
tex = tex.replace('\\mbffrakf' , '𝖋')
tex = tex.replace('\\mbffrakg' , '𝖌')
tex = tex.replace('\\mbffrakh' , '𝖍')
tex = tex.replace('\\mbffraki' , '𝖎')
tex = tex.replace('\\mbffrakj' , '𝖏')
tex = tex.replace('\\mbffrakk' , '𝖐')
tex = tex.replace('\\mbffrakl' , '𝖑')
tex = tex.replace('\\mbffrakm' , '𝖒')
tex = tex.replace('\\mbffrakn' , '𝖓')
tex = tex.replace('\\mbffrako' , '𝖔')
tex = tex.replace('\\mbffrakp' , '𝖕')
tex = tex.replace('\\mbffrakq' , '𝖖')
tex = tex.replace('\\mbffrakr' , '𝖗')
tex = tex.replace('\\mbffraks' , '𝖘')
tex = tex.replace('\\mbffrakt' , '𝖙')
tex = tex.replace('\\mbffraku' , '𝖚')
tex = tex.replace('\\mbffrakv' , '𝖛')
tex = tex.replace('\\mbffrakw' , '𝖜')
tex = tex.replace('\\mbffrakx' , '𝖝')
tex = tex.replace('\\mbffraky' , '𝖞')
tex = tex.replace('\\mbffrakz' , '𝖟')
tex = tex.replace('\\mathsf{A}' , '𝖠')
tex = tex.replace('\\mathsf{B}' , '𝖡')
tex = tex.replace('\\mathsf{C}' , '𝖢')
tex = tex.replace('\\mathsf{D}' , '𝖣')
tex = tex.replace('\\mathsf{E}' , '𝖤')
tex = tex.replace('\\mathsf{F}' , '𝖥')
tex = tex.replace('\\mathsf{G}' , '𝖦')
tex = tex.replace('\\mathsf{H}' , '𝖧')
tex = tex.replace('\\mathsf{I}' , '𝖨')
tex = tex.replace('\\mathsf{J}' , '𝖩')
tex = tex.replace('\\mathsf{K}' , '𝖪')
tex = tex.replace('\\mathsf{L}' , '𝖫')
tex = tex.replace('\\mathsf{M}' , '𝖬')
tex = tex.replace('\\mathsf{N}' , '𝖭')
tex = tex.replace('\\mathsf{O}' , '𝖮')
tex = tex.replace('\\mathsf{P}' , '𝖯')
tex = tex.replace('\\mathsf{Q}' , '𝖰')
tex = tex.replace('\\mathsf{R}' , '𝖱')
tex = tex.replace('\\mathsf{S}' , '𝖲')
tex = tex.replace('\\mathsf{T}' , '𝖳')
tex = tex.replace('\\mathsf{U}' , '𝖴')
tex = tex.replace('\\mathsf{V}' , '𝖵')
tex = tex.replace('\\mathsf{W}' , '𝖶')
tex = tex.replace('\\mathsf{X}' , '𝖷')
tex = tex.replace('\\mathsf{Y}' , '𝖸')
tex = tex.replace('\\mathsf{Z}' , '𝖹')
tex = tex.replace('\\mathsf{a}' , '𝖺')
tex = tex.replace('\\mathsf{b}' , '𝖻')
tex = tex.replace('\\mathsf{c}' , '𝖼')
tex = tex.replace('\\mathsf{d}' , '𝖽')
tex = tex.replace('\\mathsf{e}' , '𝖾')
tex = tex.replace('\\mathsf{f}' , '𝖿')
tex = tex.replace('\\mathsf{g}' , '𝗀')
tex = tex.replace('\\mathsf{h}' , '𝗁')
tex = tex.replace('\\mathsf{i}' , '𝗂')
tex = tex.replace('\\mathsf{j}' , '𝗃')
tex = tex.replace('\\mathsf{k}' , '𝗄')
tex = tex.replace('\\mathsf{l}' , '𝗅')
tex = tex.replace('\\mathsf{m}' , '𝗆')
tex = tex.replace('\\mathsf{n}' , '𝗇')
tex = tex.replace('\\mathsf{o}' , '𝗈')
tex = tex.replace('\\mathsf{p}' , '𝗉')
tex = tex.replace('\\mathsf{q}' , '𝗊')
tex = tex.replace('\\mathsf{r}' , '𝗋')
tex = tex.replace('\\mathsf{s}' , '𝗌')
tex = tex.replace('\\mathsf{t}' , '𝗍')
tex = tex.replace('\\mathsf{u}' , '𝗎')
tex = tex.replace('\\mathsf{v}' , '𝗏')
tex = tex.replace('\\mathsf{w}' , '𝗐')
tex = tex.replace('\\mathsf{x}' , '𝗑')
tex = tex.replace('\\mathsf{y}' , '𝗒')
tex = tex.replace('\\mathsf{z}' , '𝗓')
tex = tex.replace('\\mathsfbf{A}' , '𝗔')
tex = tex.replace('\\mathsfbf{B}' , '𝗕')
tex = tex.replace('\\mathsfbf{C}' , '𝗖')
tex = tex.replace('\\mathsfbf{D}' , '𝗗')
tex = tex.replace('\\mathsfbf{E}' , '𝗘')
tex = tex.replace('\\mathsfbf{F}' , '𝗙')
tex = tex.replace('\\mathsfbf{G}' , '𝗚')
tex = tex.replace('\\mathsfbf{H}' , '𝗛')
tex = tex.replace('\\mathsfbf{I}' , '𝗜')
tex = tex.replace('\\mathsfbf{J}' , '𝗝')
tex = tex.replace('\\mathsfbf{K}' , '𝗞')
tex = tex.replace('\\mathsfbf{L}' , '𝗟')
tex = tex.replace('\\mathsfbf{M}' , '𝗠')
tex = tex.replace('\\mathsfbf{N}' , '𝗡')
tex = tex.replace('\\mathsfbf{O}' , '𝗢')
tex = tex.replace('\\mathsfbf{P}' , '𝗣')
tex = tex.replace('\\mathsfbf{Q}' , '𝗤')
tex = tex.replace('\\mathsfbf{R}' , '𝗥')
tex = tex.replace('\\mathsfbf{S}' , '𝗦')
tex = tex.replace('\\mathsfbf{T}' , '𝗧')
tex = tex.replace('\\mathsfbf{U}' , '𝗨')
tex = tex.replace('\\mathsfbf{V}' , '𝗩')
tex = tex.replace('\\mathsfbf{W}' , '𝗪')
tex = tex.replace('\\mathsfbf{X}' , '𝗫')
tex = tex.replace('\\mathsfbf{Y}' , '𝗬')
tex = tex.replace('\\mathsfbf{Z}' , '𝗭')
tex = tex.replace('\\mathsfbf{a}' , '𝗮')
tex = tex.replace('\\mathsfbf{b}' , '𝗯')
tex = tex.replace('\\mathsfbf{c}' , '𝗰')
tex = tex.replace('\\mathsfbf{d}' , '𝗱')
tex = tex.replace('\\mathsfbf{e}' , '𝗲')
tex = tex.replace('\\mathsfbf{f}' , '𝗳')
tex = tex.replace('\\mathsfbf{g}' , '𝗴')
tex = tex.replace('\\mathsfbf{h}' , '𝗵')
tex = tex.replace('\\mathsfbf{i}' , '𝗶')
tex = tex.replace('\\mathsfbf{j}' , '𝗷')
tex = tex.replace('\\mathsfbf{k}' , '𝗸')
tex = tex.replace('\\mathsfbf{l}' , '𝗹')
tex = tex.replace('\\mathsfbf{m}' , '𝗺')
tex = tex.replace('\\mathsfbf{n}' , '𝗻')
tex = tex.replace('\\mathsfbf{o}' , '𝗼')
tex = tex.replace('\\mathsfbf{p}' , '𝗽')
tex = tex.replace('\\mathsfbf{q}' , '𝗾')
tex = tex.replace('\\mathsfbf{r}' , '𝗿')
tex = tex.replace('\\mathsfbf{s}' , '𝘀')
tex = tex.replace('\\mathsfbf{t}' , '𝘁')
tex = tex.replace('\\mathsfbf{u}' , '𝘂')
tex = tex.replace('\\mathsfbf{v}' , '𝘃')
tex = tex.replace('\\mathsfbf{w}' , '𝘄')
tex = tex.replace('\\mathsfbf{x}' , '𝘅')
tex = tex.replace('\\mathsfbf{y}' , '𝘆')
tex = tex.replace('\\mathsfbf{z}' , '𝘇')
tex = tex.replace('\\mathsfit{A}' , '𝘈')
tex = tex.replace('\\mathsfit{B}' , '𝘉')
tex = tex.replace('\\mathsfit{C}' , '𝘊')
tex = tex.replace('\\mathsfit{D}' , '𝘋')
tex = tex.replace('\\mathsfit{E}' , '𝘌')
tex = tex.replace('\\mathsfit{F}' , '𝘍')
tex = tex.replace('\\mathsfit{G}' , '𝘎')
tex = tex.replace('\\mathsfit{H}' , '𝘏')
tex = tex.replace('\\mathsfit{I}' , '𝘐')
tex = tex.replace('\\mathsfit{J}' , '𝘑')
tex = tex.replace('\\mathsfit{K}' , '𝘒')
tex = tex.replace('\\mathsfit{L}' , '𝘓')
tex = tex.replace('\\mathsfit{M}' , '𝘔')
tex = tex.replace('\\mathsfit{N}' , '𝘕')
tex = tex.replace('\\mathsfit{O}' , '𝘖')
tex = tex.replace('\\mathsfit{P}' , '𝘗')
tex = tex.replace('\\mathsfit{Q}' , '𝘘')
tex = tex.replace('\\mathsfit{R}' , '𝘙')
tex = tex.replace('\\mathsfit{S}' , '𝘚')
tex = tex.replace('\\mathsfit{T}' , '𝘛')
tex = tex.replace('\\mathsfit{U}' , '𝘜')
tex = tex.replace('\\mathsfit{V}' , '𝘝')
tex = tex.replace('\\mathsfit{W}' , '𝘞')
tex = tex.replace('\\mathsfit{X}' , '𝘟')
tex = tex.replace('\\mathsfit{Y}' , '𝘠')
tex = tex.replace('\\mathsfit{Z}' , '𝘡')
tex = tex.replace('\\mathsfit{a}' , '𝘢')
tex = tex.replace('\\mathsfit{b}' , '𝘣')
tex = tex.replace('\\mathsfit{c}' , '𝘤')
tex = tex.replace('\\mathsfit{d}' , '𝘥')
tex = tex.replace('\\mathsfit{e}' , '𝘦')
tex = tex.replace('\\mathsfit{f}' , '𝘧')
tex = tex.replace('\\mathsfit{g}' , '𝘨')
tex = tex.replace('\\mathsfit{h}' , '𝘩')
tex = tex.replace('\\mathsfit{i}' , '𝘪')
tex = tex.replace('\\mathsfit{j}' , '𝘫')
tex = tex.replace('\\mathsfit{k}' , '𝘬')
tex = tex.replace('\\mathsfit{l}' , '𝘭')
tex = tex.replace('\\mathsfit{m}' , '𝘮')
tex = tex.replace('\\mathsfit{n}' , '𝘯')
tex = tex.replace('\\mathsfit{o}' , '𝘰')
tex = tex.replace('\\mathsfit{p}' , '𝘱')
tex = tex.replace('\\mathsfit{q}' , '𝘲')
tex = tex.replace('\\mathsfit{r}' , '𝘳')
tex = tex.replace('\\mathsfit{s}' , '𝘴')
tex = tex.replace('\\mathsfit{t}' , '𝘵')
tex = tex.replace('\\mathsfit{u}' , '𝘶')
tex = tex.replace('\\mathsfit{v}' , '𝘷')
tex = tex.replace('\\mathsfit{w}' , '𝘸')
tex = tex.replace('\\mathsfit{x}' , '𝘹')
tex = tex.replace('\\mathsfit{y}' , '𝘺')
tex = tex.replace('\\mathsfit{z}' , '𝘻')
tex = tex.replace('\\mathsfbfit{A}' , '𝘼')
tex = tex.replace('\\mathsfbfit{B}' , '𝘽')
tex = tex.replace('\\mathsfbfit{C}' , '𝘾')
tex = tex.replace('\\mathsfbfit{D}' , '𝘿')
tex = tex.replace('\\mathsfbfit{E}' , '𝙀')
tex = tex.replace('\\mathsfbfit{F}' , '𝙁')
tex = tex.replace('\\mathsfbfit{G}' , '𝙂')
tex = tex.replace('\\mathsfbfit{H}' , '𝙃')
tex = tex.replace('\\mathsfbfit{I}' , '𝙄')
tex = tex.replace('\\mathsfbfit{J}' , '𝙅')
tex = tex.replace('\\mathsfbfit{K}' , '𝙆')
tex = tex.replace('\\mathsfbfit{L}' , '𝙇')
tex = tex.replace('\\mathsfbfit{M}' , '𝙈')
tex = tex.replace('\\mathsfbfit{N}' , '𝙉')
tex = tex.replace('\\mathsfbfit{O}' , '𝙊')
tex = tex.replace('\\mathsfbfit{P}' , '𝙋')
tex = tex.replace('\\mathsfbfit{Q}' , '𝙌')
tex = tex.replace('\\mathsfbfit{R}' , '𝙍')
tex = tex.replace('\\mathsfbfit{S}' , '𝙎')
tex = tex.replace('\\mathsfbfit{T}' , '𝙏')
tex = tex.replace('\\mathsfbfit{U}' , '𝙐')
tex = tex.replace('\\mathsfbfit{V}' , '𝙑')
tex = tex.replace('\\mathsfbfit{W}' , '𝙒')
tex = tex.replace('\\mathsfbfit{X}' , '𝙓')
tex = tex.replace('\\mathsfbfit{Y}' , '𝙔')
tex = tex.replace('\\mathsfbfit{Z}' , '𝙕')
tex = tex.replace('\\mathsfbfit{a}' , '𝙖')
tex = tex.replace('\\mathsfbfit{b}' , '𝙗')
tex = tex.replace('\\mathsfbfit{c}' , '𝙘')
tex = tex.replace('\\mathsfbfit{d}' , '𝙙')
tex = tex.replace('\\mathsfbfit{e}' , '𝙚')
tex = tex.replace('\\mathsfbfit{f}' , '𝙛')
tex = tex.replace('\\mathsfbfit{g}' , '𝙜')
tex = tex.replace('\\mathsfbfit{h}' , '𝙝')
tex = tex.replace('\\mathsfbfit{i}' , '𝙞')
tex = tex.replace('\\mathsfbfit{j}' , '𝙟')
tex = tex.replace('\\mathsfbfit{k}' , '𝙠')
tex = tex.replace('\\mathsfbfit{l}' , '𝙡')
tex = tex.replace('\\mathsfbfit{m}' , '𝙢')
tex = tex.replace('\\mathsfbfit{n}' , '𝙣')
tex = tex.replace('\\mathsfbfit{o}' , '𝙤')
tex = tex.replace('\\mathsfbfit{p}' , '𝙥')
tex = tex.replace('\\mathsfbfit{q}' , '𝙦')
tex = tex.replace('\\mathsfbfit{r}' , '𝙧')
tex = tex.replace('\\mathsfbfit{s}' , '𝙨')
tex = tex.replace('\\mathsfbfit{t}' , '𝙩')
tex = tex.replace('\\mathsfbfit{u}' , '𝙪')
tex = tex.replace('\\mathsfbfit{v}' , '𝙫')
tex = tex.replace('\\mathsfbfit{w}' , '𝙬')
tex = tex.replace('\\mathsfbfit{x}' , '𝙭')
tex = tex.replace('\\mathsfbfit{y}' , '𝙮')
tex = tex.replace('\\mathsfbfit{z}' , '𝙯')
tex = tex.replace('\\mathtt{A}' , '𝙰')
tex = tex.replace('\\mathtt{B}' , '𝙱')
tex = tex.replace('\\mathtt{C}' , '𝙲')
tex = tex.replace('\\mathtt{D}' , '𝙳')
tex = tex.replace('\\mathtt{E}' , '𝙴')
tex = tex.replace('\\mathtt{F}' , '𝙵')
tex = tex.replace('\\mathtt{G}' , '𝙶')
tex = tex.replace('\\mathtt{H}' , '𝙷')
tex = tex.replace('\\mathtt{I}' , '𝙸')
tex = tex.replace('\\mathtt{J}' , '𝙹')
tex = tex.replace('\\mathtt{K}' , '𝙺')
tex = tex.replace('\\mathtt{L}' , '𝙻')
tex = tex.replace('\\mathtt{M}' , '𝙼')
tex = tex.replace('\\mathtt{N}' , '𝙽')
tex = tex.replace('\\mathtt{O}' , '𝙾')
tex = tex.replace('\\mathtt{P}' , '𝙿')
tex = tex.replace('\\mathtt{Q}' , '𝚀')
tex = tex.replace('\\mathtt{R}' , '𝚁')
tex = tex.replace('\\mathtt{S}' , '𝚂')
tex = tex.replace('\\mathtt{T}' , '𝚃')
tex = tex.replace('\\mathtt{U}' , '𝚄')
tex = tex.replace('\\mathtt{V}' , '𝚅')
tex = tex.replace('\\mathtt{W}' , '𝚆')
tex = tex.replace('\\mathtt{X}' , '𝚇')
tex = tex.replace('\\mathtt{Y}' , '𝚈')
tex = tex.replace('\\mathtt{Z}' , '𝚉')
tex = tex.replace('\\mathtt{a}' , '𝚊')
tex = tex.replace('\\mathtt{b}' , '𝚋')
tex = tex.replace('\\mathtt{c}' , '𝚌')
tex = tex.replace('\\mathtt{d}' , '𝚍')
tex = tex.replace('\\mathtt{e}' , '𝚎')
tex = tex.replace('\\mathtt{f}' , '𝚏')
tex = tex.replace('\\mathtt{g}' , '𝚐')
tex = tex.replace('\\mathtt{h}' , '𝚑')
tex = tex.replace('\\mathtt{i}' , '𝚒')
tex = tex.replace('\\mathtt{j}' , '𝚓')
tex = tex.replace('\\mathtt{k}' , '𝚔')
tex = tex.replace('\\mathtt{l}' , '𝚕')
tex = tex.replace('\\mathtt{m}' , '𝚖')
tex = tex.replace('\\mathtt{n}' , '𝚗')
tex = tex.replace('\\mathtt{o}' , '𝚘')
tex = tex.replace('\\mathtt{p}' , '𝚙')
tex = tex.replace('\\mathtt{q}' , '𝚚')
tex = tex.replace('\\mathtt{r}' , '𝚛')
tex = tex.replace('\\mathtt{s}' , '𝚜')
tex = tex.replace('\\mathtt{t}' , '𝚝')
tex = tex.replace('\\mathtt{u}' , '𝚞')
tex = tex.replace('\\mathtt{v}' , '𝚟')
tex = tex.replace('\\mathtt{w}' , '𝚠')
tex = tex.replace('\\mathtt{x}' , '𝚡')
tex = tex.replace('\\mathtt{y}' , '𝚢')
tex = tex.replace('\\mathtt{z}' , '𝚣')
tex = tex.replace('\\mbfAlpha' , '𝚨')
tex = tex.replace('\\mbfBeta' , '𝚩')
tex = tex.replace('\\mathbf{\\Gamma}' , '𝚪')
tex = tex.replace('\\mathbf{\\Delta}' , '𝚫')
tex = tex.replace('\\mbfEpsilon' , '𝚬')
tex = tex.replace('\\mbfZeta' , '𝚭')
tex = tex.replace('\\mbfEta' , '𝚮')
tex = tex.replace('\\mathbf{\\Theta}' , '𝚯')
tex = tex.replace('\\mbfIota' , '𝚰')
tex = tex.replace('\\mbfKappa' , '𝚱')
tex = tex.replace('\\mathbf{\\Lambda}' , '𝚲')
tex = tex.replace('\\mbfMu' , '𝚳')
tex = tex.replace('\\mbfNu' , '𝚴')
tex = tex.replace('\\mathbf{\\Xi}' , '𝚵')
tex = tex.replace('\\mbfOmicron' , '𝚶')
tex = tex.replace('\\mathbf{\\Pi}' , '𝚷')
tex = tex.replace('\\mbfRho' , '𝚸')
tex = tex.replace('\\mbfvarTheta' , '𝚹')
tex = tex.replace('\\mathbf{\\Sigma}' , '𝚺')
tex = tex.replace('\\mbfTau' , '𝚻')
tex = tex.replace('\\mathbf{\\Upsilon}' , '𝚼')
tex = tex.replace('\\mathbf{\\Phi}' , '𝚽')
tex = tex.replace('\\mbfChi' , '𝚾')
tex = tex.replace('\\mathbf{\\Psi}' , '𝚿')
tex = tex.replace('\\mathbf{\\Omega}' , '𝛀')
tex = tex.replace('\\mbfnabla' , '𝛁')
tex = tex.replace('\\mathbf{\\alpha}' , '𝛂')
tex = tex.replace('\\mathbf{\\beta}' , '𝛃')
tex = tex.replace('\\mathbf{\\gamma}' , '𝛄')
tex = tex.replace('\\mathbf{\\delta}' , '𝛅')
tex = tex.replace('\\mathbf{\\varepsilon}' , '𝛆')
tex = tex.replace('\\mathbf{\\zeta}' , '𝛇')
tex = tex.replace('\\mathbf{\\eta}' , '𝛈')
tex = tex.replace('\\mathbf{\\theta}' , '𝛉')
tex = tex.replace('\\mathbf{\\iota}' , '𝛊')
tex = tex.replace('\\mathbf{\\kappa}' , '𝛋')
tex = tex.replace('\\mathbf{\\lambda}' , '𝛌')
tex = tex.replace('\\mathbf{\\mu}' , '𝛍')
tex = tex.replace('\\mathbf{\\nu}' , '𝛎')
tex = tex.replace('\\mathbf{\\xi}' , '𝛏')
tex = tex.replace('\\mbfomicron' , '𝛐')
tex = tex.replace('\\mathbf{\\pi}' , '𝛑')
tex = tex.replace('\\mathbf{\\rho}' , '𝛒')
tex = tex.replace('\\mathbf{\\varsigma}' , '𝛓')
tex = tex.replace('\\mathbf{\\sigma}' , '𝛔')
tex = tex.replace('\\mathbf{\\tau}' , '𝛕')
tex = tex.replace('\\mathbf{\\upsilon}' , '𝛖')
tex = tex.replace('\\mathbf{\\varphi}' , '𝛗')
tex = tex.replace('\\mathbf{\\chi}' , '𝛘')
tex = tex.replace('\\mathbf{\\psi}' , '𝛙')
tex = tex.replace('\\mathbf{\\omega}' , '𝛚')
tex = tex.replace('\\mbfpartial' , '𝛛')
tex = tex.replace('\\mathbf{\\epsilon}' , '𝛜')
tex = tex.replace('\\mathbf{\\vartheta}' , '𝛝')
tex = tex.replace('\\mbfvarkappa' , '𝛞')
tex = tex.replace('\\mathbf{\\phi}' , '𝛟')
tex = tex.replace('\\mathbf{\\varrho}' , '𝛠')
tex = tex.replace('\\mathbf{\\varpi}' , '𝛡')
tex = tex.replace('\\mitAlpha' , '𝛢')
tex = tex.replace('\\mitBeta' , '𝛣')
tex = tex.replace('\\mitEpsilon' , '𝛦')
tex = tex.replace('\\mitZeta' , '𝛧')
tex = tex.replace('\\mitEta' , '𝛨')
tex = tex.replace('\\mitIota' , '𝛪')
tex = tex.replace('\\mitKappa' , '𝛫')
tex = tex.replace('\\mitMu' , '𝛭')
tex = tex.replace('\\mitNu' , '𝛮')
tex = tex.replace('\\mitOmicron' , '𝛰')
tex = tex.replace('\\mitRho' , '𝛲')
tex = tex.replace('\\mitvarTheta' , '𝛳')
tex = tex.replace('\\mitTau' , '𝛵')
tex = tex.replace('\\mitChi' , '𝛸')
tex = tex.replace('\\mitnabla' , '𝛻')
tex = tex.replace('\\mitomicron' , '𝜊')
tex = tex.replace('\\mbfitAlpha' , '𝜜')
tex = tex.replace('\\mbfitBeta' , '𝜝')
tex = tex.replace('\\mathbfit{\\Gamma}' , '𝜞')
tex = tex.replace('\\mathbfit{\\Delta}' , '𝜟')
tex = tex.replace('\\mbfitEpsilon' , '𝜠')
tex = tex.replace('\\mbfitZeta' , '𝜡')
tex = tex.replace('\\mbfitEta' , '𝜢')
tex = tex.replace('\\mathbfit{\\Theta}' , '𝜣')
tex = tex.replace('\\mbfitIota' , '𝜤')
tex = tex.replace('\\mbfitKappa' , '𝜥')
tex = tex.replace('\\mathbfit{\\Lambda}' , '𝜦')
tex = tex.replace('\\mbfitMu' , '𝜧')
tex = tex.replace('\\mbfitNu' , '𝜨')
tex = tex.replace('\\mathbfit{\\Xi}' , '𝜩')
tex = tex.replace('\\mbfitOmicron' , '𝜪')
tex = tex.replace('\\mathbfit{\\Pi}' , '𝜫')
tex = tex.replace('\\mbfitRho' , '𝜬')
tex = tex.replace('\\mbfitvarTheta' , '𝜭')
tex = tex.replace('\\mathbfit{\\Sigma}' , '𝜮')
tex = tex.replace('\\mbfitTau' , '𝜯')
tex = tex.replace('\\mathbfit{\\Upsilon}' , '𝜰')
tex = tex.replace('\\mathbfit{\\Phi}' , '𝜱')
tex = tex.replace('\\mbfitChi' , '𝜲')
tex = tex.replace('\\mathbfit{\\Psi}' , '𝜳')
tex = tex.replace('\\mathbfit{\\Omega}' , '𝜴')
tex = tex.replace('\\mbfitnabla' , '𝜵')
tex = tex.replace('\\mathbfit{\\alpha}' , '𝜶')
tex = tex.replace('\\mathbfit{\\beta}' , '𝜷')
tex = tex.replace('\\mathbfit{\\gamma}' , '𝜸')
tex = tex.replace('\\mathbfit{\\delta}' , '𝜹')
tex = tex.replace('\\mathbfit{\\varepsilon}' , '𝜺')
tex = tex.replace('\\mathbfit{\\zeta}' , '𝜻')
tex = tex.replace('\\mathbfit{\\eta}' , '𝜼')
tex = tex.replace('\\mathbfit{\\theta}' , '𝜽')
tex = tex.replace('\\mathbfit{\\iota}' , '𝜾')
tex = tex.replace('\\mathbfit{\\kappa}' , '𝜿')
tex = tex.replace('\\mathbfit{\\lambda}' , '𝝀')
tex = tex.replace('\\mathbfit{\\mu}' , '𝝁')
tex = tex.replace('\\mathbfit{\\nu}' , '𝝂')
tex = tex.replace('\\mathbfit{\\xi}' , '𝝃')
tex = tex.replace('\\mbfitomicron' , '𝝄')
tex = tex.replace('\\mathbfit{\\pi}' , '𝝅')
tex = tex.replace('\\mathbfit{\\rho}' , '𝝆')
tex = tex.replace('\\mathbfit{\\varsigma}' , '𝝇')
tex = tex.replace('\\mathbfit{\\sigma}' , '𝝈')
tex = tex.replace('\\mathbfit{\\tau}' , '𝝉')
tex = tex.replace('\\mathbfit{\\upsilon}' , '𝝊')
tex = tex.replace('\\mathbfit{\\varphi}' , '𝝋')
tex = tex.replace('\\mathbfit{\\chi}' , '𝝌')
tex = tex.replace('\\mathbfit{\\psi}' , '𝝍')
tex = tex.replace('\\mathbfit{\\omega}' , '𝝎')
tex = tex.replace('\\mbfitpartial' , '𝝏')
tex = tex.replace('\\mathbfit{\\epsilon}' , '𝝐')
tex = tex.replace('\\mathbfit{\\vartheta}' , '𝝑')
tex = tex.replace('\\mbfitvarkappa' , '𝝒')
tex = tex.replace('\\mathbfit{\\phi}' , '𝝓')
tex = tex.replace('\\mathbfit{\\varrho}' , '𝝔')
tex = tex.replace('\\mathbfit{\\varpi}' , '𝝕')
tex = tex.replace('\\mbfsansAlpha' , '𝝖')
tex = tex.replace('\\mbfsansBeta' , '𝝗')
tex = tex.replace('\\mathsfbf{\\Gamma}' , '𝝘')
tex = tex.replace('\\mathsfbf{\\Delta}' , '𝝙')
tex = tex.replace('\\mbfsansEpsilon' , '𝝚')
tex = tex.replace('\\mbfsansZeta' , '𝝛')
tex = tex.replace('\\mbfsansEta' , '𝝜')
tex = tex.replace('\\mathsfbf{\\Theta}' , '𝝝')
tex = tex.replace('\\mbfsansIota' , '𝝞')
tex = tex.replace('\\mbfsansKappa' , '𝝟')
tex = tex.replace('\\mathsfbf{\\Lambda}' , '𝝠')
tex = tex.replace('\\mbfsansMu' , '𝝡')
tex = tex.replace('\\mbfsansNu' , '𝝢')
tex = tex.replace('\\mathsfbf{\\Xi}' , '𝝣')
tex = tex.replace('\\mbfsansOmicron' , '𝝤')
tex = tex.replace('\\mathsfbf{\\Pi}' , '𝝥')
tex = tex.replace('\\mbfsansRho' , '𝝦')
tex = tex.replace('\\mbfsansvarTheta' , '𝝧')
tex = tex.replace('\\mathsfbf{\\Sigma}' , '𝝨')
tex = tex.replace('\\mbfsansTau' , '𝝩')
tex = tex.replace('\\mathsfbf{\\Upsilon}' , '𝝪')
tex = tex.replace('\\mathsfbf{\\Phi}' , '𝝫')
tex = tex.replace('\\mbfsansChi' , '𝝬')
tex = tex.replace('\\mathsfbf{\\Psi}' , '𝝭')
tex = tex.replace('\\mathsfbf{\\Omega}' , '𝝮')
tex = tex.replace('\\mbfsansnabla' , '𝝯')
tex = tex.replace('\\mathsfbf{\\alpha}' , '𝝰')
tex = tex.replace('\\mathsfbf{\\beta}' , '𝝱')
tex = tex.replace('\\mathsfbf{\\gamma}' , '𝝲')
tex = tex.replace('\\mathsfbf{\\delta}' , '𝝳')
tex = tex.replace('\\mathsfbf{\\varepsilon}' , '𝝴')
tex = tex.replace('\\mathsfbf{\\zeta}' , '𝝵')
tex = tex.replace('\\mathsfbf{\\eta}' , '𝝶')
tex = tex.replace('\\mathsfbf{\\theta}' , '𝝷')
tex = tex.replace('\\mathsfbf{\\iota}' , '𝝸')
tex = tex.replace('\\mathsfbf{\\kappa}' , '𝝹')
tex = tex.replace('\\mathsfbf{\\lambda}' , '𝝺')
tex = tex.replace('\\mathsfbf{\\mu}' , '𝝻')
tex = tex.replace('\\mathsfbf{\\nu}' , '𝝼')
tex = tex.replace('\\mathsfbf{\\xi}' , '𝝽')
tex = tex.replace('\\mbfsansomicron' , '𝝾')
tex = tex.replace('\\mathsfbf{\\pi}' , '𝝿')
tex = tex.replace('\\mathsfbf{\\rho}' , '𝞀')
tex = tex.replace('\\mathsfbf{\\varsigma}' , '𝞁')
tex = tex.replace('\\mathsfbf{\\sigma}' , '𝞂')
tex = tex.replace('\\mathsfbf{\\tau}' , '𝞃')
tex = tex.replace('\\mathsfbf{\\upsilon}' , '𝞄')
tex = tex.replace('\\mathsfbf{\\varphi}' , '𝞅')
tex = tex.replace('\\mathsfbf{\\chi}' , '𝞆')
tex = tex.replace('\\mathsfbf{\\psi}' , '𝞇')
tex = tex.replace('\\mathsfbf{\\omega}' , '𝞈')
tex = tex.replace('\\mbfsanspartial' , '𝞉')
tex = tex.replace('\\mathsfbf{\\epsilon}' , '𝞊')
tex = tex.replace('\\mathsfbf{\\vartheta}' , '𝞋')
tex = tex.replace('\\mbfsansvarkappa' , '𝞌')
tex = tex.replace('\\mathsfbf{\\phi}' , '𝞍')
tex = tex.replace('\\mathsfbf{\\varrho}' , '𝞎')
tex = tex.replace('\\mathsfbf{\\varpi}' , '𝞏')
tex = tex.replace('\\mbfitsansAlpha' , '𝞐')
tex = tex.replace('\\mbfitsansBeta' , '𝞑')
tex = tex.replace('\\mathsfbfit{\\Gamma}' , '𝞒')
tex = tex.replace('\\mathsfbfit{\\Delta}' , '𝞓')
tex = tex.replace('\\mbfitsansEpsilon' , '𝞔')
tex = tex.replace('\\mbfitsansZeta' , '𝞕')
tex = tex.replace('\\mbfitsansEta' , '𝞖')
tex = tex.replace('\\mathsfbfit{\\Theta}' , '𝞗')
tex = tex.replace('\\mbfitsansIota' , '𝞘')
tex = tex.replace('\\mbfitsansKappa' , '𝞙')
tex = tex.replace('\\mathsfbfit{\\Lambda}' , '𝞚')
tex = tex.replace('\\mbfitsansMu' , '𝞛')
tex = tex.replace('\\mbfitsansNu' , '𝞜')
tex = tex.replace('\\mathsfbfit{\\Xi}' , '𝞝')
tex = tex.replace('\\mbfitsansOmicron' , '𝞞')
tex = tex.replace('\\mathsfbfit{\\Pi}' , '𝞟')
tex = tex.replace('\\mbfitsansRho' , '𝞠')
tex = tex.replace('\\mbfitsansvarTheta' , '𝞡')
tex = tex.replace('\\mathsfbfit{\\Sigma}' , '𝞢')
tex = tex.replace('\\mbfitsansTau' , '𝞣')
tex = tex.replace('\\mathsfbfit{\\Upsilon}' , '𝞤')
tex = tex.replace('\\mathsfbfit{\\Phi}' , '𝞥')
tex = tex.replace('\\mbfitsansChi' , '𝞦')
tex = tex.replace('\\mathsfbfit{\\Psi}' , '𝞧')
tex = tex.replace('\\mathsfbfit{\\Omega}' , '𝞨')
tex = tex.replace('\\mbfitsansnabla' , '𝞩')
tex = tex.replace('\\mathsfbfit{\\alpha}' , '𝞪')
tex = tex.replace('\\mathsfbfit{\\beta}' , '𝞫')
tex = tex.replace('\\mathsfbfit{\\gamma}' , '𝞬')
tex = tex.replace('\\mathsfbfit{\\delta}' , '𝞭')
tex = tex.replace('\\mathsfbfit{\\varepsilon}' , '𝞮')
tex = tex.replace('\\mathsfbfit{\\zeta}' , '𝞯')
tex = tex.replace('\\mathsfbfit{\\eta}' , '𝞰')
tex = tex.replace('\\mathsfbfit{\\theta}' , '𝞱')
tex = tex.replace('\\mathsfbfit{\\iota}' , '𝞲')
tex = tex.replace('\\mathsfbfit{\\kappa}' , '𝞳')
tex = tex.replace('\\mathsfbfit{\\lambda}' , '𝞴')
tex = tex.replace('\\mathsfbfit{\\mu}' , '𝞵')
tex = tex.replace('\\mathsfbfit{\\nu}' , '𝞶')
tex = tex.replace('\\mathsfbfit{\\xi}' , '𝞷')
tex = tex.replace('\\mbfitsansomicron' , '𝞸')
tex = tex.replace('\\mathsfbfit{\\pi}' , '𝞹')
tex = tex.replace('\\mathsfbfit{\\rho}' , '𝞺')
tex = tex.replace('\\mathsfbfit{\\varsigma}' , '𝞻')
tex = tex.replace('\\mathsfbfit{\\sigma}' , '𝞼')
tex = tex.replace('\\mathsfbfit{\\tau}' , '𝞽')
tex = tex.replace('\\mathsfbfit{\\upsilon}' , '𝞾')
tex = tex.replace('\\mathsfbfit{\\varphi}' , '𝞿')
tex = tex.replace('\\mathsfbfit{\\chi}' , '𝟀')
tex = tex.replace('\\mathsfbfit{\\psi}' , '𝟁')
tex = tex.replace('\\mathsfbfit{\\omega}' , '𝟂')
tex = tex.replace('\\mbfitsanspartial' , '𝟃')
tex = tex.replace('\\mathsfbfit{\\epsilon}' , '𝟄')
tex = tex.replace('\\mathsfbfit{\\vartheta}' , '𝟅')
tex = tex.replace('\\mbfitsansvarkappa' , '𝟆')
tex = tex.replace('\\mathsfbfit{\\phi}' , '𝟇')
tex = tex.replace('\\mathsfbfit{\\varrho}' , '𝟈')
tex = tex.replace('\\mathsfbfit{\\varpi}' , '𝟉')
tex = tex.replace('\\mbfDigamma' , '𝟊')
tex = tex.replace('\\mbfdigamma' , '𝟋')
tex = tex.replace('\\mathbf{0}' , '𝟎')
tex = tex.replace('\\mathbf{1}' , '𝟏')
tex = tex.replace('\\mathbf{2}' , '𝟐')
tex = tex.replace('\\mathbf{3}' , '𝟑')
tex = tex.replace('\\mathbf{4}' , '𝟒')
tex = tex.replace('\\mathbf{5}' , '𝟓')
tex = tex.replace('\\mathbf{6}' , '𝟔')
tex = tex.replace('\\mathbf{7}' , '𝟕')
tex = tex.replace('\\mathbf{8}' , '𝟖')
tex = tex.replace('\\mathbf{9}' , '𝟗')
tex = tex.replace('\\mathsf{0}' , '𝟢')
tex = tex.replace('\\mathsf{1}' , '𝟣')
tex = tex.replace('\\mathsf{2}' , '𝟤')
tex = tex.replace('\\mathsf{3}' , '𝟥')
tex = tex.replace('\\mathsf{4}' , '𝟦')
tex = tex.replace('\\mathsf{5}' , '𝟧')
tex = tex.replace('\\mathsf{6}' , '𝟨')
tex = tex.replace('\\mathsf{7}' , '𝟩')
tex = tex.replace('\\mathsf{8}' , '𝟪')
tex = tex.replace('\\mathsf{9}' , '𝟫')
tex = tex.replace('\\mathsfbf{0}' , '𝟬')
tex = tex.replace('\\mathsfbf{1}' , '𝟭')
tex = tex.replace('\\mathsfbf{2}' , '𝟮')
tex = tex.replace('\\mathsfbf{3}' , '𝟯')
tex = tex.replace('\\mathsfbf{4}' , '𝟰')
tex = tex.replace('\\mathsfbf{5}' , '𝟱')
tex = tex.replace('\\mathsfbf{6}' , '𝟲')
tex = tex.replace('\\mathsfbf{7}' , '𝟳')
tex = tex.replace('\\mathsfbf{8}' , '𝟴')
tex = tex.replace('\\mathsfbf{9}' , '𝟵')
tex = tex.replace('\\mathtt{0}' , '𝟶')
tex = tex.replace('\\mathtt{1}' , '𝟷')
tex = tex.replace('\\mathtt{2}' , '𝟸')
tex = tex.replace('\\mathtt{3}' , '𝟹')
tex = tex.replace('\\mathtt{4}' , '𝟺')
tex = tex.replace('\\mathtt{5}' , '𝟻')
tex = tex.replace('\\mathtt{6}' , '𝟼')
tex = tex.replace('\\mathtt{7}' , '𝟽')
tex = tex.replace('\\mathtt{8}' , '𝟾')
tex = tex.replace('\\mathtt{9}' , '𝟿')
tex = tex.replace('\frac{1}{2}' , '½')
tex = tex.replace('\frac{1}{4}' , '¼')
tex = tex.replace('\frac{3}{4}' , '¾')