-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.tex
More file actions
1467 lines (719 loc) · 42.7 KB
/
groups.tex
File metadata and controls
1467 lines (719 loc) · 42.7 KB
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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\subsection{ Group \texttt{big\textunderscore literals}}
\texttt{\textbackslash Big} is rendered as $\Big($
\texttt{\textbackslash Bigg} is rendered as $\Bigg($
\texttt{\textbackslash Biggl} is rendered as $\Biggl($
\texttt{\textbackslash Biggr} is rendered as $\Biggr($
\texttt{\textbackslash Bigl} is rendered as $\Bigl($
\texttt{\textbackslash Bigr} is rendered as $\Bigr($
\texttt{\textbackslash big} is rendered as $\big($
\texttt{\textbackslash bigg} is rendered as $\bigg($
\texttt{\textbackslash biggl} is rendered as $\biggl($
\texttt{\textbackslash biggr} is rendered as $\biggr($
\texttt{\textbackslash bigl} is rendered as $\bigl($
\texttt{\textbackslash bigr} is rendered as $\bigr($
\subsection{ Group \texttt{box\textunderscore functions}}
\texttt{\textbackslash hbox} is rendered as $\hbox{x}$
\texttt{\textbackslash mbox} is rendered as $\mbox{x}$
\texttt{\textbackslash text} is rendered as $\text{x}$
\texttt{\textbackslash vbox} is rendered as $\vbox{x}$
\subsection{ Group \texttt{color\textunderscore function}}
\texttt{\textbackslash color} is rendered as $\color{red}{red}$
\texttt{\textbackslash pagecolor} is not rendered.
\subsection{ Group \texttt{declh\textunderscore function}}
\texttt{\textbackslash bf} is rendered as $\bf$
\texttt{\textbackslash cal} is rendered as $\cal$
\texttt{\textbackslash it} is rendered as $\it$
\texttt{\textbackslash rm} is rendered as $\rm$
\subsection{ Group \texttt{definecolor\textunderscore function}}
\texttt{\textbackslash definecolor} is rendered as $\definecolor{mycolor}{cmyk}{.4,1,1,0}$
\subsection{ Group \texttt{fun\textunderscore ar1}}
\texttt{\textbackslash acute} is rendered as $\acute{x}$
\texttt{\textbackslash bar} is rendered as $\bar{x}$
\texttt{\textbackslash bcancel} is rendered as $\bcancel{x}$
\texttt{\textbackslash bmod} is rendered as $\bmod{x}$
\texttt{\textbackslash boldsymbol} is rendered as $\boldsymbol{x}$
\texttt{\textbackslash breve} is rendered as $\breve{x}$
\texttt{\textbackslash cancel} is rendered as $\cancel{x}$
\texttt{\textbackslash check} is rendered as $\check{x}$
\texttt{\textbackslash ddot} is rendered as $\ddot{x}$
\texttt{\textbackslash dot} is rendered as $\dot{x}$
\texttt{\textbackslash emph} is rendered as $\emph{x}$
\texttt{\textbackslash grave} is rendered as $\grave{x}$
\texttt{\textbackslash hat} is rendered as $\hat{x}$
\texttt{\textbackslash hphantom} is rendered as $\hphantom{x}$
\texttt{\textbackslash mathcal} is rendered as $\mathcal{x}$
\texttt{\textbackslash mathclose} is rendered as $\mathclose{x}$
\texttt{\textbackslash mathfrak} is rendered as $\mathfrak{x}$
\texttt{\textbackslash mathit} is rendered as $\mathit{x}$
\texttt{\textbackslash mathopen} is rendered as $\mathopen{x}$
\texttt{\textbackslash mathord} is rendered as $\mathord{x}$
\texttt{\textbackslash mathpunct} is rendered as $\mathpunct{x}$
\texttt{\textbackslash mathsf} is rendered as $\mathsf{x}$
\texttt{\textbackslash mathtt} is rendered as $\mathtt{x}$
\texttt{\textbackslash overleftarrow} is rendered as $\overleftarrow{x}$
\texttt{\textbackslash overleftrightarrow} is rendered as $\overleftrightarrow{x}$
\texttt{\textbackslash overline} is rendered as $\overline{x}$
\texttt{\textbackslash overrightarrow} is rendered as $\overrightarrow{x}$
\texttt{\textbackslash phantom} is rendered as $\phantom{x}$
\texttt{\textbackslash pmod} is rendered as $\pmod{x}$
\texttt{\textbackslash sqrt} is rendered as $\sqrt{x}$
\texttt{\textbackslash textbf} is rendered as $\textbf{x}$
\texttt{\textbackslash textit} is rendered as $\textit{x}$
\texttt{\textbackslash textrm} is rendered as $\textrm{x}$
\texttt{\textbackslash textsf} is rendered as $\textsf{x}$
\texttt{\textbackslash texttt} is rendered as $\texttt{x}$
\texttt{\textbackslash tilde} is rendered as $\tilde{x}$
\texttt{\textbackslash underline} is rendered as $\underline{x}$
\texttt{\textbackslash vec} is rendered as $\vec{x}$
\texttt{\textbackslash vphantom} is rendered as $\vphantom{x}$
\texttt{\textbackslash widehat} is rendered as $\widehat{x}$
\texttt{\textbackslash widetilde} is rendered as $\widetilde{x}$
\texttt{\textbackslash xcancel} is rendered as $\xcancel{x}$
\subsection{ Group \texttt{fun\textunderscore ar1nb}}
\texttt{\textbackslash mathbb} is rendered as $\mathbb{x}$
\texttt{\textbackslash mathbf} is rendered as $\mathbf{x}$
\texttt{\textbackslash mathbin} is rendered as $\mathbin{x}$
\texttt{\textbackslash mathop} is rendered as $\mathop{x}$
\texttt{\textbackslash mathrel} is rendered as $\mathrel{x}$
\texttt{\textbackslash mathrm} is rendered as $\mathrm{x}$
\texttt{\textbackslash operatorname} is rendered as $\operatorname{x}$
\texttt{\textbackslash overarc} is rendered as $\overarc{x}$
\texttt{\textbackslash overbrace} is rendered as $\overbrace{x}$
\texttt{\textbackslash underbrace} is rendered as $\underbrace{x}$
\texttt{\textbackslash xleftarrow} is rendered as $\xleftarrow{x}$
\texttt{\textbackslash xrightarrow} is rendered as $\xrightarrow{x}$
\subsection{ Group \texttt{fun\textunderscore ar1opt}}
\texttt{\textbackslash sqrt} is rendered as $\sqrt{x}$
\texttt{\textbackslash xleftarrow} is rendered as $\xleftarrow{x}$
\texttt{\textbackslash xrightarrow} is rendered as $\xrightarrow{x}$
\subsection{ Group \texttt{fun\textunderscore ar2}}
\texttt{\textbackslash binom} applied on ${x}{x}$ is rendered as $\binom{x}{x}$
\texttt{\textbackslash cancelto} applied on ${x}{x}$ is rendered as $\cancelto{x}{x}$
\texttt{\textbackslash cfrac} applied on ${x}{x}$ is rendered as $\cfrac{x}{x}$
\texttt{\textbackslash dbinom} applied on ${x}{x}$ is rendered as $\dbinom{x}{x}$
\texttt{\textbackslash dfrac} applied on ${x}{x}$ is rendered as $\dfrac{x}{x}$
\texttt{\textbackslash frac} applied on ${x}{x}$ is rendered as $\frac{x}{x}$
\texttt{\textbackslash overset} applied on ${x}{x}$ is rendered as $\overset{x}{x}$
\texttt{\textbackslash stackrel} applied on ${x}{x}$ is rendered as $\stackrel{x}{x}$
\texttt{\textbackslash tbinom} applied on ${x}{x}$ is rendered as $\tbinom{x}{x}$
\texttt{\textbackslash tfrac} applied on ${x}{x}$ is rendered as $\tfrac{x}{x}$
\texttt{\textbackslash underset} applied on ${x}{x}$ is rendered as $\underset{x}{x}$
\subsection{ Group \texttt{fun\textunderscore ar2nb}}
\texttt{\textbackslash sideset} applied on ${_1^2}{_3^4}\sum$ is rendered as $\sideset{_1^2}{_3^4}\sum$
\subsection{ Group \texttt{fun\textunderscore infix}}
\texttt{\textbackslash atop} applied on $ x, y$ is rendered as $x\atop y$
\texttt{\textbackslash choose} applied on $ x, y$ is rendered as $x\choose y$
\texttt{\textbackslash over} applied on $ x, y$ is rendered as $x\over y$
\subsection{ Group \texttt{fun\textunderscore mhchem}}
\texttt{\textbackslash ce} is rendered as $\ce{x}$
\subsection{ Group \texttt{hline\textunderscore function}}
\texttt{\textbackslash hline} applied in a table is rendered as $\begin{matrix} x_{11} & x_{12} \\ \hline \end{matrix}$
\subsection{ Group \texttt{latex\textunderscore function\textunderscore names}}
\texttt{\textbackslash Pr} is rendered as $\Pr$
\texttt{\textbackslash arccos} is rendered as $\arccos$
\texttt{\textbackslash arcsin} is rendered as $\arcsin$
\texttt{\textbackslash arctan} is rendered as $\arctan$
\texttt{\textbackslash arg} is rendered as $\arg$
\texttt{\textbackslash cos} is rendered as $\cos$
\texttt{\textbackslash cosh} is rendered as $\cosh$
\texttt{\textbackslash cot} is rendered as $\cot$
\texttt{\textbackslash coth} is rendered as $\coth$
\texttt{\textbackslash csc} is rendered as $\csc$
\texttt{\textbackslash deg} is rendered as $\deg$
\texttt{\textbackslash det} is rendered as $\det$
\texttt{\textbackslash dim} is rendered as $\dim$
\texttt{\textbackslash exp} is rendered as $\exp$
\texttt{\textbackslash gcd} is rendered as $\gcd$
\texttt{\textbackslash hom} is rendered as $\hom$
\texttt{\textbackslash inf} is rendered as $\inf$
\texttt{\textbackslash ker} is rendered as $\ker$
\texttt{\textbackslash lg} is rendered as $\lg$
\texttt{\textbackslash lim} is rendered as $\lim$
\texttt{\textbackslash liminf} is rendered as $\liminf$
\texttt{\textbackslash limsup} is rendered as $\limsup$
\texttt{\textbackslash ln} is rendered as $\ln$
\texttt{\textbackslash log} is rendered as $\log$
\texttt{\textbackslash max} is rendered as $\max$
\texttt{\textbackslash min} is rendered as $\min$
\texttt{\textbackslash sec} is rendered as $\sec$
\texttt{\textbackslash sin} is rendered as $\sin$
\texttt{\textbackslash sinh} is rendered as $\sinh$
\texttt{\textbackslash sup} is rendered as $\sup$
\texttt{\textbackslash tan} is rendered as $\tan$
\texttt{\textbackslash tanh} is rendered as $\tanh$
\subsection{ Group \texttt{left\textunderscore function}}
\texttt{\textbackslash left} is rendered as $\left( \right.$
\subsection{ Group \texttt{mediawiki\textunderscore function\textunderscore names}}
\texttt{\textbackslash arccot} is rendered as $\operatorname{arccot} y$
\texttt{\textbackslash arccsc} is rendered as $\operatorname{arccsc} y$
\texttt{\textbackslash arcsec} is rendered as $\operatorname{arcsec} y$
\texttt{\textbackslash sen} is rendered as $\operatorname{sen} y$
\texttt{\textbackslash sgn} is rendered as $\operatorname{sgn} y$
\subsection{ Group \texttt{mhchem\textunderscore bond}}
\texttt{\textbackslash bond} is rendered as $\ce{\bond{-}}$
\subsection{ Group \texttt{mhchem\textunderscore macro\textunderscore 1p}}
\texttt{\textbackslash ce} is rendered as $\ce{\ce{x}}$
\texttt{\textbackslash mathbf} is rendered as $\ce{\mathbf{x}}$
\subsection{ Group \texttt{mhchem\textunderscore macro\textunderscore 2p}}
\texttt{\textbackslash frac} applied on ${x}{x}$ is rendered as $\ce{\frac{x}{x}}$
\texttt{\textbackslash overset} applied on ${x}{x}$ is rendered as $\ce{\overset{x}{x}}$
\texttt{\textbackslash underset} applied on ${x}{x}$ is rendered as $\ce{\underset{x}{x}}$
\subsection{ Group \texttt{mhchem\textunderscore macro\textunderscore 2pc}}
\texttt{\textbackslash color} is rendered as $\ce{\color{red}{red}}$
\subsection{ Group \texttt{mhchem\textunderscore macro\textunderscore 2pu}}
\texttt{\textbackslash underbrace} is rendered as $\ce{\underbrace{x}}$
\subsection{ Group \texttt{mhchem\textunderscore single\textunderscore macro}}
\texttt{\textbackslash Alpha} is rendered as $\ce{\Alpha}$
\texttt{\textbackslash Beta} is rendered as $\ce{\Beta}$
\texttt{\textbackslash Chi} is rendered as $\ce{\Chi}$
\texttt{\textbackslash Delta} is rendered as $\ce{\Delta}$
\texttt{\textbackslash Epsilon} is rendered as $\ce{\Epsilon}$
\texttt{\textbackslash Eta} is rendered as $\ce{\Eta}$
\texttt{\textbackslash Gamma} is rendered as $\ce{\Gamma}$
\texttt{\textbackslash Iota} is rendered as $\ce{\Iota}$
\texttt{\textbackslash Kappa} is rendered as $\ce{\Kappa}$
\texttt{\textbackslash Lambda} is rendered as $\ce{\Lambda}$
\texttt{\textbackslash Mu} is rendered as $\ce{\Mu}$
\texttt{\textbackslash Nu} is rendered as $\ce{\Nu}$
\texttt{\textbackslash Omega} is rendered as $\ce{\Omega}$
\texttt{\textbackslash Omicron} is rendered as $\ce{\Omicron}$
\texttt{\textbackslash Phi} is rendered as $\ce{\Phi}$
\texttt{\textbackslash Pi} is rendered as $\ce{\Pi}$
\texttt{\textbackslash Psi} is rendered as $\ce{\Psi}$
\texttt{\textbackslash Rho} is rendered as $\ce{\Rho}$
\texttt{\textbackslash Sigma} is rendered as $\ce{\Sigma}$
\texttt{\textbackslash Tau} is rendered as $\ce{\Tau}$
\texttt{\textbackslash Theta} is rendered as $\ce{\Theta}$
\texttt{\textbackslash Upsilon} is rendered as $\ce{\Upsilon}$
\texttt{\textbackslash Zeta} is rendered as $\ce{\Zeta}$
\texttt{\textbackslash alpha} is rendered as $\ce{\alpha}$
\texttt{\textbackslash approx} is rendered as $\ce{\approx}$
\texttt{\textbackslash beta} is rendered as $\ce{\beta}$
%\texttt{\textbackslash ca} was never used. \newline \url{https://phabricator.wikimedia.org/T323878}
\texttt{\textbackslash chi} is rendered as $\ce{\chi}$
\texttt{\textbackslash circ} is rendered as $\ce{\circ}$
\texttt{\textbackslash delta} is rendered as $\ce{\delta}$
\texttt{\textbackslash epsilon} is rendered as $\ce{\epsilon}$
\texttt{\textbackslash eta} is rendered as $\ce{\eta}$
\texttt{\textbackslash gamma} is rendered as $\ce{\gamma}$
\texttt{\textbackslash iota} is rendered as $\ce{\iota}$
\texttt{\textbackslash kappa} is rendered as $\ce{\kappa}$
\texttt{\textbackslash lambda} is rendered as $\ce{\lambda}$
\texttt{\textbackslash mu} is rendered as $\ce{\mu}$
\texttt{\textbackslash nu} is rendered as $\ce{\nu}$
\texttt{\textbackslash omega} is rendered as $\ce{\omega}$
\texttt{\textbackslash omicron} is rendered as $\ce{\omicron}$
\texttt{\textbackslash phi} is rendered as $\ce{\phi}$
\texttt{\textbackslash pi} is rendered as $\ce{\pi}$
\texttt{\textbackslash pm} is rendered as $\ce{\pm}$
\texttt{\textbackslash psi} is rendered as $\ce{\psi}$
\texttt{\textbackslash rho} is rendered as $\ce{\rho}$
\texttt{\textbackslash sigma} is rendered as $\ce{\sigma}$
\texttt{\textbackslash tau} is rendered as $\ce{\tau}$
\texttt{\textbackslash theta} is rendered as $\ce{\theta}$
\texttt{\textbackslash upsilon} is rendered as $\ce{\upsilon}$
\texttt{\textbackslash varepsilon} is rendered as $\ce{\varepsilon}$
\texttt{\textbackslash varkappa} is rendered as $\ce{\varkappa}$
\texttt{\textbackslash varphi} is rendered as $\ce{\varphi}$
\texttt{\textbackslash varpi} is rendered as $\ce{\varpi}$
\texttt{\textbackslash varrho} is rendered as $\ce{\varrho}$
\texttt{\textbackslash varsigma} is rendered as $\ce{\varsigma}$
\texttt{\textbackslash vartheta} is rendered as $\ce{\vartheta}$
\texttt{\textbackslash zeta} is rendered as $\ce{\zeta}$
\subsection{ Group \texttt{nullary\textunderscore macro}}
\texttt{\textbackslash And} is rendered as $\And$
\texttt{\textbackslash Bbbk} is rendered as $\Bbbk$
\texttt{\textbackslash Box} is rendered as $\Box$
\texttt{\textbackslash Bumpeq} is rendered as $\Bumpeq$
\texttt{\textbackslash Cap} is rendered as $\Cap$
\texttt{\textbackslash Cup} is rendered as $\Cup$
\texttt{\textbackslash Delta} is rendered as $\Delta$
\texttt{\textbackslash Diamond} is rendered as $\Diamond$
\texttt{\textbackslash Finv} is rendered as $\Finv$
\texttt{\textbackslash Game} is rendered as $\Game$
\texttt{\textbackslash Gamma} is rendered as $\Gamma$
\texttt{\textbackslash Im} is rendered as $\Im$
\texttt{\textbackslash Lambda} is rendered as $\Lambda$
\texttt{\textbackslash Leftarrow} is rendered as $\Leftarrow$
\texttt{\textbackslash Leftrightarrow} is rendered as $\Leftrightarrow$
\texttt{\textbackslash Lleftarrow} is rendered as $\Lleftarrow$
\texttt{\textbackslash Longleftarrow} is rendered as $\Longleftarrow$
\texttt{\textbackslash Longleftrightarrow} is rendered as $\Longleftrightarrow$
\texttt{\textbackslash Longrightarrow} is rendered as $\Longrightarrow$
\texttt{\textbackslash Lsh} is rendered as $\Lsh$
\texttt{\textbackslash Omega} is rendered as $\Omega$
\texttt{\textbackslash P} is rendered as $\P$
\texttt{\textbackslash Phi} is rendered as $\Phi$
\texttt{\textbackslash Pi} is rendered as $\Pi$
\texttt{\textbackslash Psi} is rendered as $\Psi$
\texttt{\textbackslash Re} is rendered as $\Re$
\texttt{\textbackslash Rightarrow} is rendered as $\Rightarrow$
\texttt{\textbackslash Rrightarrow} is rendered as $\Rrightarrow$
\texttt{\textbackslash Rsh} is rendered as $\Rsh$
\texttt{\textbackslash S} is rendered as $\S$
\texttt{\textbackslash Sigma} is rendered as $\Sigma$
\texttt{\textbackslash Subset} is rendered as $\Subset$
\texttt{\textbackslash Supset} is rendered as $\Supset$
\texttt{\textbackslash Theta} is rendered as $\Theta$
\texttt{\textbackslash Upsilon} is rendered as $\Upsilon$
\texttt{\textbackslash Vdash} is rendered as $\Vdash$
\texttt{\textbackslash Vvdash} is rendered as $\Vvdash$
\texttt{\textbackslash Xi} is rendered as $\Xi$
\texttt{\textbackslash aleph} is rendered as $\aleph$
\texttt{\textbackslash alpha} is rendered as $\alpha$
\texttt{\textbackslash amalg} is rendered as $\amalg$
\texttt{\textbackslash angle} is rendered as $\angle$
\texttt{\textbackslash approx} is rendered as $\approx$
\texttt{\textbackslash approxeq} is rendered as $\approxeq$
\texttt{\textbackslash ast} is rendered as $\ast$
\texttt{\textbackslash asymp} is rendered as $\asymp$
\texttt{\textbackslash backepsilon} is rendered as $\backepsilon$
\texttt{\textbackslash backprime} is rendered as $\backprime$
\texttt{\textbackslash backsim} is rendered as $\backsim$
\texttt{\textbackslash backsimeq} is rendered as $\backsimeq$
\texttt{\textbackslash barwedge} is rendered as $\barwedge$
\texttt{\textbackslash because} is rendered as $\because$
\texttt{\textbackslash beta} is rendered as $\beta$
\texttt{\textbackslash beth} is rendered as $\beth$
\texttt{\textbackslash between} is rendered as $\between$
\texttt{\textbackslash bigcap} is rendered as $\bigcap$
\texttt{\textbackslash bigcirc} is rendered as $\bigcirc$
\texttt{\textbackslash bigcup} is rendered as $\bigcup$
\texttt{\textbackslash bigodot} is rendered as $\bigodot$
\texttt{\textbackslash bigoplus} is rendered as $\bigoplus$
\texttt{\textbackslash bigotimes} is rendered as $\bigotimes$
\texttt{\textbackslash bigsqcup} is rendered as $\bigsqcup$
\texttt{\textbackslash bigstar} is rendered as $\bigstar$
\texttt{\textbackslash bigtriangledown} is rendered as $\bigtriangledown$
\texttt{\textbackslash bigtriangleup} is rendered as $\bigtriangleup$
\texttt{\textbackslash biguplus} is rendered as $\biguplus$
\texttt{\textbackslash bigvee} is rendered as $\bigvee$
\texttt{\textbackslash bigwedge} is rendered as $\bigwedge$
\texttt{\textbackslash blacklozenge} is rendered as $\blacklozenge$
\texttt{\textbackslash blacksquare} is rendered as $\blacksquare$
\texttt{\textbackslash blacktriangle} is rendered as $\blacktriangle$
\texttt{\textbackslash blacktriangledown} is rendered as $\blacktriangledown$
\texttt{\textbackslash blacktriangleleft} is rendered as $\blacktriangleleft$
\texttt{\textbackslash blacktriangleright} is rendered as $\blacktriangleright$
\texttt{\textbackslash bot} is rendered as $\bot$
\texttt{\textbackslash bowtie} is rendered as $\bowtie$
\texttt{\textbackslash boxdot} is rendered as $\boxdot$
\texttt{\textbackslash boxminus} is rendered as $\boxminus$
\texttt{\textbackslash boxplus} is rendered as $\boxplus$
\texttt{\textbackslash boxtimes} is rendered as $\boxtimes$
\texttt{\textbackslash bullet} is rendered as $\bullet$
\texttt{\textbackslash bumpeq} is rendered as $\bumpeq$
\texttt{\textbackslash cap} is rendered as $\cap$
\texttt{\textbackslash cdot} is rendered as $\cdot$
\texttt{\textbackslash cdots} is rendered as $\cdots$
\texttt{\textbackslash centerdot} is rendered as $\centerdot$
\texttt{\textbackslash checkmark} is rendered as $\checkmark$
\texttt{\textbackslash chi} is rendered as $\chi$
\texttt{\textbackslash circ} is rendered as $\circ$
\texttt{\textbackslash circeq} is rendered as $\circeq$
\texttt{\textbackslash circlearrowleft} is rendered as $\circlearrowleft$
\texttt{\textbackslash circlearrowright} is rendered as $\circlearrowright$
\texttt{\textbackslash circledS} is rendered as $\circledS$
\texttt{\textbackslash circledast} is rendered as $\circledast$
\texttt{\textbackslash circledcirc} is rendered as $\circledcirc$
\texttt{\textbackslash circleddash} is rendered as $\circleddash$
\texttt{\textbackslash clubsuit} is rendered as $\clubsuit$
\texttt{\textbackslash colon} is rendered as $\colon$
\texttt{\textbackslash complement} is rendered as $\complement$
\texttt{\textbackslash cong} is rendered as $\cong$
\texttt{\textbackslash coprod} is rendered as $\coprod$
\texttt{\textbackslash cup} is rendered as $\cup$
\texttt{\textbackslash curlyeqprec} is rendered as $\curlyeqprec$
\texttt{\textbackslash curlyeqsucc} is rendered as $\curlyeqsucc$
\texttt{\textbackslash curlyvee} is rendered as $\curlyvee$
\texttt{\textbackslash curlywedge} is rendered as $\curlywedge$
\texttt{\textbackslash curvearrowleft} is rendered as $\curvearrowleft$
\texttt{\textbackslash curvearrowright} is rendered as $\curvearrowright$
\texttt{\textbackslash dagger} is rendered as $\dagger$
\texttt{\textbackslash daleth} is rendered as $\daleth$
\texttt{\textbackslash dashv} is rendered as $\dashv$
\texttt{\textbackslash ddagger} is rendered as $\ddagger$
\texttt{\textbackslash ddots} is rendered as $\ddots$
\texttt{\textbackslash delta} is rendered as $\delta$
\texttt{\textbackslash diagdown} is rendered as $\diagdown$
\texttt{\textbackslash diagup} is rendered as $\diagup$
\texttt{\textbackslash diamond} is rendered as $\diamond$
\texttt{\textbackslash diamondsuit} is rendered as $\diamondsuit$
\texttt{\textbackslash digamma} is rendered as $\digamma$
\texttt{\textbackslash displaystyle} is rendered as $\displaystyle$
\texttt{\textbackslash div} is rendered as $\div$
\texttt{\textbackslash divideontimes} is rendered as $\divideontimes$
\texttt{\textbackslash doteq} is rendered as $\doteq$
\texttt{\textbackslash doteqdot} is rendered as $\doteqdot$
\texttt{\textbackslash dotplus} is rendered as $\dotplus$
\texttt{\textbackslash dots} is rendered as $\dots$
\texttt{\textbackslash dotsb} is rendered as $\dotsb$
\texttt{\textbackslash dotsc} is rendered as $\dotsc$
\texttt{\textbackslash dotsi} is rendered as $\dotsi$
\texttt{\textbackslash dotsm} is rendered as $\dotsm$
\texttt{\textbackslash dotso} is rendered as $\dotso$
\texttt{\textbackslash doublebarwedge} is rendered as $\doublebarwedge$
\texttt{\textbackslash downdownarrows} is rendered as $\downdownarrows$
\texttt{\textbackslash downharpoonleft} is rendered as $\downharpoonleft$
\texttt{\textbackslash downharpoonright} is rendered as $\downharpoonright$
\texttt{\textbackslash ell} is rendered as $\ell$
\texttt{\textbackslash emptyset} is rendered as $\emptyset$
\texttt{\textbackslash epsilon} is rendered as $\epsilon$
\texttt{\textbackslash eqcirc} is rendered as $\eqcirc$
\texttt{\textbackslash eqsim} is rendered as $\eqsim$
\texttt{\textbackslash eqslantgtr} is rendered as $\eqslantgtr$
\texttt{\textbackslash eqslantless} is rendered as $\eqslantless$
\texttt{\textbackslash equiv} is rendered as $\equiv$
\texttt{\textbackslash eta} is rendered as $\eta$
\texttt{\textbackslash eth} is rendered as $\eth$
\texttt{\textbackslash exists} is rendered as $\exists$
\texttt{\textbackslash fallingdotseq} is rendered as $\fallingdotseq$
\texttt{\textbackslash flat} is rendered as $\flat$
\texttt{\textbackslash forall} is rendered as $\forall$
\texttt{\textbackslash frown} is rendered as $\frown$
\texttt{\textbackslash gamma} is rendered as $\gamma$
\texttt{\textbackslash geq} is rendered as $\geq$
\texttt{\textbackslash geqq} is rendered as $\geqq$
\texttt{\textbackslash geqslant} is rendered as $\geqslant$
\texttt{\textbackslash gets} is rendered as $\gets$
\texttt{\textbackslash gg} is rendered as $\gg$
\texttt{\textbackslash ggg} is rendered as $\ggg$
\texttt{\textbackslash gimel} is rendered as $\gimel$
\texttt{\textbackslash gnapprox} is rendered as $\gnapprox$
\texttt{\textbackslash gneq} is rendered as $\gneq$
\texttt{\textbackslash gneqq} is rendered as $\gneqq$
\texttt{\textbackslash gnsim} is rendered as $\gnsim$
\texttt{\textbackslash gtrapprox} is rendered as $\gtrapprox$
\texttt{\textbackslash gtrdot} is rendered as $\gtrdot$
\texttt{\textbackslash gtreqless} is rendered as $\gtreqless$
\texttt{\textbackslash gtreqqless} is rendered as $\gtreqqless$
\texttt{\textbackslash gtrless} is rendered as $\gtrless$
\texttt{\textbackslash gtrsim} is rendered as $\gtrsim$
\texttt{\textbackslash gvertneqq} is rendered as $\gvertneqq$
\texttt{\textbackslash hbar} is rendered as $\hbar$
\texttt{\textbackslash heartsuit} is rendered as $\heartsuit$
\texttt{\textbackslash hookleftarrow} is rendered as $\hookleftarrow$
\texttt{\textbackslash hookrightarrow} is rendered as $\hookrightarrow$
\texttt{\textbackslash hslash} is rendered as $\hslash$
\texttt{\textbackslash iff} is rendered as $\iff$
\texttt{\textbackslash iiiint} is rendered as $\iiiint$
\texttt{\textbackslash iiint} is rendered as $\iiint$
\texttt{\textbackslash iint} is rendered as $\iint$
\texttt{\textbackslash imath} is rendered as $\imath$
\texttt{\textbackslash implies} is rendered as $\implies$
\texttt{\textbackslash in} is rendered as $\in$
\texttt{\textbackslash infty} is rendered as $\infty$
\texttt{\textbackslash injlim} is rendered as $\injlim$
\texttt{\textbackslash int} is rendered as $\int$
\texttt{\textbackslash intBar} is rendered as $\intBar$
\texttt{\textbackslash intbar} is rendered as $\intbar$
\texttt{\textbackslash intercal} is rendered as $\intercal$
\texttt{\textbackslash iota} is rendered as $\iota$
\texttt{\textbackslash jmath} is rendered as $\jmath$
\texttt{\textbackslash kappa} is rendered as $\kappa$
\texttt{\textbackslash lVert} is rendered as $\lVert$
\texttt{\textbackslash lambda} is rendered as $\lambda$
\texttt{\textbackslash land} is rendered as $\land$
\texttt{\textbackslash ldots} is rendered as $\ldots$
\texttt{\textbackslash leftarrow} is rendered as $\leftarrow$
\texttt{\textbackslash leftarrowtail} is rendered as $\leftarrowtail$
\texttt{\textbackslash leftharpoondown} is rendered as $\leftharpoondown$
\texttt{\textbackslash leftharpoonup} is rendered as $\leftharpoonup$
\texttt{\textbackslash leftleftarrows} is rendered as $\leftleftarrows$
\texttt{\textbackslash leftrightarrow} is rendered as $\leftrightarrow$
\texttt{\textbackslash leftrightarrows} is rendered as $\leftrightarrows$
\texttt{\textbackslash leftrightharpoons} is rendered as $\leftrightharpoons$
\texttt{\textbackslash leftrightsquigarrow} is rendered as $\leftrightsquigarrow$
\texttt{\textbackslash leftthreetimes} is rendered as $\leftthreetimes$
\texttt{\textbackslash leq} is rendered as $\leq$
\texttt{\textbackslash leqq} is rendered as $\leqq$
\texttt{\textbackslash leqslant} is rendered as $\leqslant$
\texttt{\textbackslash lessapprox} is rendered as $\lessapprox$
\texttt{\textbackslash lessdot} is rendered as $\lessdot$
\texttt{\textbackslash lesseqgtr} is rendered as $\lesseqgtr$
\texttt{\textbackslash lesseqqgtr} is rendered as $\lesseqqgtr$
\texttt{\textbackslash lessgtr} is rendered as $\lessgtr$
\texttt{\textbackslash lesssim} is rendered as $\lesssim$
\texttt{\textbackslash limits} is rendered for example as $\mathop\cap\limits_a^b$
\texttt{\textbackslash ll} is rendered as $\ll$
\texttt{\textbackslash lll} is rendered as $\lll$
\texttt{\textbackslash lnapprox} is rendered as $\lnapprox$
\texttt{\textbackslash lneq} is rendered as $\lneq$
\texttt{\textbackslash lneqq} is rendered as $\lneqq$
\texttt{\textbackslash lnot} is rendered as $\lnot$
\texttt{\textbackslash lnsim} is rendered as $\lnsim$
\texttt{\textbackslash longleftarrow} is rendered as $\longleftarrow$
\texttt{\textbackslash longleftrightarrow} is rendered as $\longleftrightarrow$
\texttt{\textbackslash longmapsto} is rendered as $\longmapsto$
\texttt{\textbackslash longrightarrow} is rendered as $\longrightarrow$
\texttt{\textbackslash looparrowleft} is rendered as $\looparrowleft$
\texttt{\textbackslash looparrowright} is rendered as $\looparrowright$
\texttt{\textbackslash lor} is rendered as $\lor$
\texttt{\textbackslash lozenge} is rendered as $\lozenge$
\texttt{\textbackslash ltimes} is rendered as $\ltimes$
\texttt{\textbackslash lvertneqq} is rendered as $\lvertneqq$
\texttt{\textbackslash mapsto} is rendered as $\mapsto$
\texttt{\textbackslash measuredangle} is rendered as $\measuredangle$
\texttt{\textbackslash mho} is rendered as $\mho$
\texttt{\textbackslash mid} is rendered as $\mid$
\texttt{\textbackslash mod} is rendered as $\mod$
\texttt{\textbackslash models} is rendered as $\models$
\texttt{\textbackslash mp} is rendered as $\mp$
\texttt{\textbackslash mu} is rendered as $\mu$
\texttt{\textbackslash multimap} is rendered as $\multimap$
\texttt{\textbackslash nLeftarrow} is rendered as $\nLeftarrow$
\texttt{\textbackslash nLeftrightarrow} is rendered as $\nLeftrightarrow$
\texttt{\textbackslash nRightarrow} is rendered as $\nRightarrow$
\texttt{\textbackslash nVDash} is rendered as $\nVDash$
\texttt{\textbackslash nVdash} is rendered as $\nVdash$
\texttt{\textbackslash nabla} is rendered as $\nabla$
\texttt{\textbackslash natural} is rendered as $\natural$
\texttt{\textbackslash ncong} is rendered as $\ncong$
\texttt{\textbackslash nearrow} is rendered as $\nearrow$
\texttt{\textbackslash neg} is rendered as $\neg$
\texttt{\textbackslash neq} is rendered as $\neq$
\texttt{\textbackslash nexists} is rendered as $\nexists$
\texttt{\textbackslash ngeq} is rendered as $\ngeq$
\texttt{\textbackslash ngeqq} is rendered as $\ngeqq$
\texttt{\textbackslash ngeqslant} is rendered as $\ngeqslant$
\texttt{\textbackslash ngtr} is rendered as $\ngtr$
\texttt{\textbackslash ni} is rendered as $\ni$
\texttt{\textbackslash nleftarrow} is rendered as $\nleftarrow$
\texttt{\textbackslash nleftrightarrow} is rendered as $\nleftrightarrow$
\texttt{\textbackslash nleq} is rendered as $\nleq$
\texttt{\textbackslash nleqq} is rendered as $\nleqq$
\texttt{\textbackslash nleqslant} is rendered as $\nleqslant$
\texttt{\textbackslash nless} is rendered as $\nless$