Initial commit
This commit is contained in:
@@ -0,0 +1,788 @@
|
||||
# LaTeX math to Unicode symbols translation table
|
||||
# for use with the translate() method of unicode objects.
|
||||
# Generated with ``write_unichar2tex.py`` from the data in
|
||||
# http://milde.users.sourceforge.net/LUCR/Math/
|
||||
|
||||
# Includes commands from: standard LaTeX, amssymb, amsmath
|
||||
|
||||
uni2tex_table = {
|
||||
160: '~',
|
||||
163: '\\pounds ',
|
||||
165: '\\yen ',
|
||||
172: '\\neg ',
|
||||
174: '\\circledR ',
|
||||
177: '\\pm ',
|
||||
215: '\\times ',
|
||||
240: '\\eth ',
|
||||
247: '\\div ',
|
||||
305: '\\imath ',
|
||||
567: '\\jmath ',
|
||||
915: '\\Gamma ',
|
||||
916: '\\Delta ',
|
||||
920: '\\Theta ',
|
||||
923: '\\Lambda ',
|
||||
926: '\\Xi ',
|
||||
928: '\\Pi ',
|
||||
931: '\\Sigma ',
|
||||
933: '\\Upsilon ',
|
||||
934: '\\Phi ',
|
||||
936: '\\Psi ',
|
||||
937: '\\Omega ',
|
||||
945: '\\alpha ',
|
||||
946: '\\beta ',
|
||||
947: '\\gamma ',
|
||||
948: '\\delta ',
|
||||
949: '\\varepsilon ',
|
||||
950: '\\zeta ',
|
||||
951: '\\eta ',
|
||||
952: '\\theta ',
|
||||
953: '\\iota ',
|
||||
954: '\\kappa ',
|
||||
955: '\\lambda ',
|
||||
956: '\\mu ',
|
||||
957: '\\nu ',
|
||||
958: '\\xi ',
|
||||
960: '\\pi ',
|
||||
961: '\\rho ',
|
||||
962: '\\varsigma ',
|
||||
963: '\\sigma ',
|
||||
964: '\\tau ',
|
||||
965: '\\upsilon ',
|
||||
966: '\\varphi ',
|
||||
967: '\\chi ',
|
||||
968: '\\psi ',
|
||||
969: '\\omega ',
|
||||
977: '\\vartheta ',
|
||||
981: '\\phi ',
|
||||
982: '\\varpi ',
|
||||
989: '\\digamma ',
|
||||
1014: '\\backepsilon ',
|
||||
8193: '\\quad ',
|
||||
8214: '\\| ',
|
||||
8224: '\\dagger ',
|
||||
8225: '\\ddagger ',
|
||||
8230: '\\ldots ',
|
||||
8242: '\\prime ',
|
||||
8245: '\\backprime ',
|
||||
8287: '\\: ',
|
||||
8450: '\\mathbb{C}',
|
||||
8459: '\\mathcal{H}',
|
||||
8460: '\\mathfrak{H}',
|
||||
8461: '\\mathbb{H}',
|
||||
8463: '\\hslash ',
|
||||
8464: '\\mathcal{I}',
|
||||
8465: '\\Im ',
|
||||
8466: '\\mathcal{L}',
|
||||
8467: '\\ell ',
|
||||
8469: '\\mathbb{N}',
|
||||
8472: '\\wp ',
|
||||
8473: '\\mathbb{P}',
|
||||
8474: '\\mathbb{Q}',
|
||||
8475: '\\mathcal{R}',
|
||||
8476: '\\Re ',
|
||||
8477: '\\mathbb{R}',
|
||||
8484: '\\mathbb{Z}',
|
||||
8487: '\\mho ',
|
||||
8488: '\\mathfrak{Z}',
|
||||
8492: '\\mathcal{B}',
|
||||
8493: '\\mathfrak{C}',
|
||||
8496: '\\mathcal{E}',
|
||||
8497: '\\mathcal{F}',
|
||||
8498: '\\Finv ',
|
||||
8499: '\\mathcal{M}',
|
||||
8501: '\\aleph ',
|
||||
8502: '\\beth ',
|
||||
8503: '\\gimel ',
|
||||
8504: '\\daleth ',
|
||||
8592: '\\leftarrow ',
|
||||
8593: '\\uparrow ',
|
||||
8594: '\\rightarrow ',
|
||||
8595: '\\downarrow ',
|
||||
8596: '\\leftrightarrow ',
|
||||
8597: '\\updownarrow ',
|
||||
8598: '\\nwarrow ',
|
||||
8599: '\\nearrow ',
|
||||
8600: '\\searrow ',
|
||||
8601: '\\swarrow ',
|
||||
8602: '\\nleftarrow ',
|
||||
8603: '\\nrightarrow ',
|
||||
8606: '\\twoheadleftarrow ',
|
||||
8608: '\\twoheadrightarrow ',
|
||||
8610: '\\leftarrowtail ',
|
||||
8611: '\\rightarrowtail ',
|
||||
8614: '\\mapsto ',
|
||||
8617: '\\hookleftarrow ',
|
||||
8618: '\\hookrightarrow ',
|
||||
8619: '\\looparrowleft ',
|
||||
8620: '\\looparrowright ',
|
||||
8621: '\\leftrightsquigarrow ',
|
||||
8622: '\\nleftrightarrow ',
|
||||
8624: '\\Lsh ',
|
||||
8625: '\\Rsh ',
|
||||
8630: '\\curvearrowleft ',
|
||||
8631: '\\curvearrowright ',
|
||||
8634: '\\circlearrowleft ',
|
||||
8635: '\\circlearrowright ',
|
||||
8636: '\\leftharpoonup ',
|
||||
8637: '\\leftharpoondown ',
|
||||
8638: '\\upharpoonright ',
|
||||
8639: '\\upharpoonleft ',
|
||||
8640: '\\rightharpoonup ',
|
||||
8641: '\\rightharpoondown ',
|
||||
8642: '\\downharpoonright ',
|
||||
8643: '\\downharpoonleft ',
|
||||
8644: '\\rightleftarrows ',
|
||||
8646: '\\leftrightarrows ',
|
||||
8647: '\\leftleftarrows ',
|
||||
8648: '\\upuparrows ',
|
||||
8649: '\\rightrightarrows ',
|
||||
8650: '\\downdownarrows ',
|
||||
8651: '\\leftrightharpoons ',
|
||||
8652: '\\rightleftharpoons ',
|
||||
8653: '\\nLeftarrow ',
|
||||
8654: '\\nLeftrightarrow ',
|
||||
8655: '\\nRightarrow ',
|
||||
8656: '\\Leftarrow ',
|
||||
8657: '\\Uparrow ',
|
||||
8658: '\\Rightarrow ',
|
||||
8659: '\\Downarrow ',
|
||||
8660: '\\Leftrightarrow ',
|
||||
8661: '\\Updownarrow ',
|
||||
8666: '\\Lleftarrow ',
|
||||
8667: '\\Rrightarrow ',
|
||||
8669: '\\rightsquigarrow ',
|
||||
8672: '\\dashleftarrow ',
|
||||
8674: '\\dashrightarrow ',
|
||||
8704: '\\forall ',
|
||||
8705: '\\complement ',
|
||||
8706: '\\partial ',
|
||||
8707: '\\exists ',
|
||||
8708: '\\nexists ',
|
||||
8709: '\\varnothing ',
|
||||
8711: '\\nabla ',
|
||||
8712: '\\in ',
|
||||
8713: '\\notin ',
|
||||
8715: '\\ni ',
|
||||
8719: '\\prod ',
|
||||
8720: '\\coprod ',
|
||||
8721: '\\sum ',
|
||||
8722: '-',
|
||||
8723: '\\mp ',
|
||||
8724: '\\dotplus ',
|
||||
8725: '\\slash ',
|
||||
8726: '\\smallsetminus ',
|
||||
8727: '\\ast ',
|
||||
8728: '\\circ ',
|
||||
8729: '\\bullet ',
|
||||
8730: '\\sqrt ',
|
||||
8731: '\\sqrt[3] ',
|
||||
8732: '\\sqrt[4] ',
|
||||
8733: '\\propto ',
|
||||
8734: '\\infty ',
|
||||
8736: '\\angle ',
|
||||
8737: '\\measuredangle ',
|
||||
8738: '\\sphericalangle ',
|
||||
8739: '\\mid ',
|
||||
8740: '\\nmid ',
|
||||
8741: '\\parallel ',
|
||||
8742: '\\nparallel ',
|
||||
8743: '\\wedge ',
|
||||
8744: '\\vee ',
|
||||
8745: '\\cap ',
|
||||
8746: '\\cup ',
|
||||
8747: '\\int ',
|
||||
8748: '\\iint ',
|
||||
8749: '\\iiint ',
|
||||
8750: '\\oint ',
|
||||
8756: '\\therefore ',
|
||||
8757: '\\because ',
|
||||
8758: ':',
|
||||
8764: '\\sim ',
|
||||
8765: '\\backsim ',
|
||||
8768: '\\wr ',
|
||||
8769: '\\nsim ',
|
||||
8770: '\\eqsim ',
|
||||
8771: '\\simeq ',
|
||||
8773: '\\cong ',
|
||||
8775: '\\ncong ',
|
||||
8776: '\\approx ',
|
||||
8778: '\\approxeq ',
|
||||
8781: '\\asymp ',
|
||||
8782: '\\Bumpeq ',
|
||||
8783: '\\bumpeq ',
|
||||
8784: '\\doteq ',
|
||||
8785: '\\Doteq ',
|
||||
8786: '\\fallingdotseq ',
|
||||
8787: '\\risingdotseq ',
|
||||
8790: '\\eqcirc ',
|
||||
8791: '\\circeq ',
|
||||
8796: '\\triangleq ',
|
||||
8800: '\\neq ',
|
||||
8801: '\\equiv ',
|
||||
8804: '\\leq ',
|
||||
8805: '\\geq ',
|
||||
8806: '\\leqq ',
|
||||
8807: '\\geqq ',
|
||||
8808: '\\lneqq ',
|
||||
8809: '\\gneqq ',
|
||||
8810: '\\ll ',
|
||||
8811: '\\gg ',
|
||||
8812: '\\between ',
|
||||
8814: '\\nless ',
|
||||
8815: '\\ngtr ',
|
||||
8816: '\\nleq ',
|
||||
8817: '\\ngeq ',
|
||||
8818: '\\lesssim ',
|
||||
8819: '\\gtrsim ',
|
||||
8822: '\\lessgtr ',
|
||||
8823: '\\gtrless ',
|
||||
8826: '\\prec ',
|
||||
8827: '\\succ ',
|
||||
8828: '\\preccurlyeq ',
|
||||
8829: '\\succcurlyeq ',
|
||||
8830: '\\precsim ',
|
||||
8831: '\\succsim ',
|
||||
8832: '\\nprec ',
|
||||
8833: '\\nsucc ',
|
||||
8834: '\\subset ',
|
||||
8835: '\\supset ',
|
||||
8838: '\\subseteq ',
|
||||
8839: '\\supseteq ',
|
||||
8840: '\\nsubseteq ',
|
||||
8841: '\\nsupseteq ',
|
||||
8842: '\\subsetneq ',
|
||||
8843: '\\supsetneq ',
|
||||
8846: '\\uplus ',
|
||||
8847: '\\sqsubset ',
|
||||
8848: '\\sqsupset ',
|
||||
8849: '\\sqsubseteq ',
|
||||
8850: '\\sqsupseteq ',
|
||||
8851: '\\sqcap ',
|
||||
8852: '\\sqcup ',
|
||||
8853: '\\oplus ',
|
||||
8854: '\\ominus ',
|
||||
8855: '\\otimes ',
|
||||
8856: '\\oslash ',
|
||||
8857: '\\odot ',
|
||||
8858: '\\circledcirc ',
|
||||
8859: '\\circledast ',
|
||||
8861: '\\circleddash ',
|
||||
8862: '\\boxplus ',
|
||||
8863: '\\boxminus ',
|
||||
8864: '\\boxtimes ',
|
||||
8865: '\\boxdot ',
|
||||
8866: '\\vdash ',
|
||||
8867: '\\dashv ',
|
||||
8868: '\\top ',
|
||||
8869: '\\bot ',
|
||||
8871: '\\models ',
|
||||
8872: '\\vDash ',
|
||||
8873: '\\Vdash ',
|
||||
8874: '\\Vvdash ',
|
||||
8876: '\\nvdash ',
|
||||
8877: '\\nvDash ',
|
||||
8878: '\\nVdash ',
|
||||
8879: '\\nVDash ',
|
||||
8882: '\\vartriangleleft ',
|
||||
8883: '\\vartriangleright ',
|
||||
8884: '\\trianglelefteq ',
|
||||
8885: '\\trianglerighteq ',
|
||||
8888: '\\multimap ',
|
||||
8890: '\\intercal ',
|
||||
8891: '\\veebar ',
|
||||
8892: '\\barwedge ',
|
||||
8896: '\\bigwedge ',
|
||||
8897: '\\bigvee ',
|
||||
8898: '\\bigcap ',
|
||||
8899: '\\bigcup ',
|
||||
8900: '\\diamond ',
|
||||
8901: '\\cdot ',
|
||||
8902: '\\star ',
|
||||
8903: '\\divideontimes ',
|
||||
8904: '\\bowtie ',
|
||||
8905: '\\ltimes ',
|
||||
8906: '\\rtimes ',
|
||||
8907: '\\leftthreetimes ',
|
||||
8908: '\\rightthreetimes ',
|
||||
8909: '\\backsimeq ',
|
||||
8910: '\\curlyvee ',
|
||||
8911: '\\curlywedge ',
|
||||
8912: '\\Subset ',
|
||||
8913: '\\Supset ',
|
||||
8914: '\\Cap ',
|
||||
8915: '\\Cup ',
|
||||
8916: '\\pitchfork ',
|
||||
8918: '\\lessdot ',
|
||||
8919: '\\gtrdot ',
|
||||
8920: '\\lll ',
|
||||
8921: '\\ggg ',
|
||||
8922: '\\lesseqgtr ',
|
||||
8923: '\\gtreqless ',
|
||||
8926: '\\curlyeqprec ',
|
||||
8927: '\\curlyeqsucc ',
|
||||
8928: '\\npreceq ',
|
||||
8929: '\\nsucceq ',
|
||||
8934: '\\lnsim ',
|
||||
8935: '\\gnsim ',
|
||||
8936: '\\precnsim ',
|
||||
8937: '\\succnsim ',
|
||||
8938: '\\ntriangleleft ',
|
||||
8939: '\\ntriangleright ',
|
||||
8940: '\\ntrianglelefteq ',
|
||||
8941: '\\ntrianglerighteq ',
|
||||
8942: '\\vdots ',
|
||||
8943: '\\cdots ',
|
||||
8945: '\\ddots ',
|
||||
8968: '\\lceil ',
|
||||
8969: '\\rceil ',
|
||||
8970: '\\lfloor ',
|
||||
8971: '\\rfloor ',
|
||||
8988: '\\ulcorner ',
|
||||
8989: '\\urcorner ',
|
||||
8990: '\\llcorner ',
|
||||
8991: '\\lrcorner ',
|
||||
8994: '\\frown ',
|
||||
8995: '\\smile ',
|
||||
9182: '\\overbrace ',
|
||||
9183: '\\underbrace ',
|
||||
9651: '\\bigtriangleup ',
|
||||
9655: '\\rhd ',
|
||||
9661: '\\bigtriangledown ',
|
||||
9665: '\\lhd ',
|
||||
9671: '\\Diamond ',
|
||||
9674: '\\lozenge ',
|
||||
9723: '\\square ',
|
||||
9724: '\\blacksquare ',
|
||||
9733: '\\bigstar ',
|
||||
9824: '\\spadesuit ',
|
||||
9825: '\\heartsuit ',
|
||||
9826: '\\diamondsuit ',
|
||||
9827: '\\clubsuit ',
|
||||
9837: '\\flat ',
|
||||
9838: '\\natural ',
|
||||
9839: '\\sharp ',
|
||||
10003: '\\checkmark ',
|
||||
10016: '\\maltese ',
|
||||
10178: '\\perp ',
|
||||
10216: '\\langle ',
|
||||
10217: '\\rangle ',
|
||||
10222: '\\lgroup ',
|
||||
10223: '\\rgroup ',
|
||||
10229: '\\longleftarrow ',
|
||||
10230: '\\longrightarrow ',
|
||||
10231: '\\longleftrightarrow ',
|
||||
10232: '\\Longleftarrow ',
|
||||
10233: '\\Longrightarrow ',
|
||||
10234: '\\Longleftrightarrow ',
|
||||
10236: '\\longmapsto ',
|
||||
10731: '\\blacklozenge ',
|
||||
10741: '\\setminus ',
|
||||
10752: '\\bigodot ',
|
||||
10753: '\\bigoplus ',
|
||||
10754: '\\bigotimes ',
|
||||
10756: '\\biguplus ',
|
||||
10758: '\\bigsqcup ',
|
||||
10764: '\\iiiint ',
|
||||
10781: '\\Join ',
|
||||
10815: '\\amalg ',
|
||||
10846: '\\doublebarwedge ',
|
||||
10877: '\\leqslant ',
|
||||
10878: '\\geqslant ',
|
||||
10885: '\\lessapprox ',
|
||||
10886: '\\gtrapprox ',
|
||||
10887: '\\lneq ',
|
||||
10888: '\\gneq ',
|
||||
10889: '\\lnapprox ',
|
||||
10890: '\\gnapprox ',
|
||||
10891: '\\lesseqqgtr ',
|
||||
10892: '\\gtreqqless ',
|
||||
10901: '\\eqslantless ',
|
||||
10902: '\\eqslantgtr ',
|
||||
10927: '\\preceq ',
|
||||
10928: '\\succeq ',
|
||||
10935: '\\precapprox ',
|
||||
10936: '\\succapprox ',
|
||||
10937: '\\precnapprox ',
|
||||
10938: '\\succnapprox ',
|
||||
10949: '\\subseteqq ',
|
||||
10950: '\\supseteqq ',
|
||||
10955: '\\subsetneqq ',
|
||||
10956: '\\supsetneqq ',
|
||||
119808: '\\mathbf{A}',
|
||||
119809: '\\mathbf{B}',
|
||||
119810: '\\mathbf{C}',
|
||||
119811: '\\mathbf{D}',
|
||||
119812: '\\mathbf{E}',
|
||||
119813: '\\mathbf{F}',
|
||||
119814: '\\mathbf{G}',
|
||||
119815: '\\mathbf{H}',
|
||||
119816: '\\mathbf{I}',
|
||||
119817: '\\mathbf{J}',
|
||||
119818: '\\mathbf{K}',
|
||||
119819: '\\mathbf{L}',
|
||||
119820: '\\mathbf{M}',
|
||||
119821: '\\mathbf{N}',
|
||||
119822: '\\mathbf{O}',
|
||||
119823: '\\mathbf{P}',
|
||||
119824: '\\mathbf{Q}',
|
||||
119825: '\\mathbf{R}',
|
||||
119826: '\\mathbf{S}',
|
||||
119827: '\\mathbf{T}',
|
||||
119828: '\\mathbf{U}',
|
||||
119829: '\\mathbf{V}',
|
||||
119830: '\\mathbf{W}',
|
||||
119831: '\\mathbf{X}',
|
||||
119832: '\\mathbf{Y}',
|
||||
119833: '\\mathbf{Z}',
|
||||
119834: '\\mathbf{a}',
|
||||
119835: '\\mathbf{b}',
|
||||
119836: '\\mathbf{c}',
|
||||
119837: '\\mathbf{d}',
|
||||
119838: '\\mathbf{e}',
|
||||
119839: '\\mathbf{f}',
|
||||
119840: '\\mathbf{g}',
|
||||
119841: '\\mathbf{h}',
|
||||
119842: '\\mathbf{i}',
|
||||
119843: '\\mathbf{j}',
|
||||
119844: '\\mathbf{k}',
|
||||
119845: '\\mathbf{l}',
|
||||
119846: '\\mathbf{m}',
|
||||
119847: '\\mathbf{n}',
|
||||
119848: '\\mathbf{o}',
|
||||
119849: '\\mathbf{p}',
|
||||
119850: '\\mathbf{q}',
|
||||
119851: '\\mathbf{r}',
|
||||
119852: '\\mathbf{s}',
|
||||
119853: '\\mathbf{t}',
|
||||
119854: '\\mathbf{u}',
|
||||
119855: '\\mathbf{v}',
|
||||
119856: '\\mathbf{w}',
|
||||
119857: '\\mathbf{x}',
|
||||
119858: '\\mathbf{y}',
|
||||
119859: '\\mathbf{z}',
|
||||
119860: 'A',
|
||||
119861: 'B',
|
||||
119862: 'C',
|
||||
119863: 'D',
|
||||
119864: 'E',
|
||||
119865: 'F',
|
||||
119866: 'G',
|
||||
119867: 'H',
|
||||
119868: 'I',
|
||||
119869: 'J',
|
||||
119870: 'K',
|
||||
119871: 'L',
|
||||
119872: 'M',
|
||||
119873: 'N',
|
||||
119874: 'O',
|
||||
119875: 'P',
|
||||
119876: 'Q',
|
||||
119877: 'R',
|
||||
119878: 'S',
|
||||
119879: 'T',
|
||||
119880: 'U',
|
||||
119881: 'V',
|
||||
119882: 'W',
|
||||
119883: 'X',
|
||||
119884: 'Y',
|
||||
119885: 'Z',
|
||||
119886: 'a',
|
||||
119887: 'b',
|
||||
119888: 'c',
|
||||
119889: 'd',
|
||||
119890: 'e',
|
||||
119891: 'f',
|
||||
119892: 'g',
|
||||
119894: 'i',
|
||||
119895: 'j',
|
||||
119896: 'k',
|
||||
119897: 'l',
|
||||
119898: 'm',
|
||||
119899: 'n',
|
||||
119900: 'o',
|
||||
119901: 'p',
|
||||
119902: 'q',
|
||||
119903: 'r',
|
||||
119904: 's',
|
||||
119905: 't',
|
||||
119906: 'u',
|
||||
119907: 'v',
|
||||
119908: 'w',
|
||||
119909: 'x',
|
||||
119910: 'y',
|
||||
119911: 'z',
|
||||
119964: '\\mathcal{A}',
|
||||
119966: '\\mathcal{C}',
|
||||
119967: '\\mathcal{D}',
|
||||
119970: '\\mathcal{G}',
|
||||
119973: '\\mathcal{J}',
|
||||
119974: '\\mathcal{K}',
|
||||
119977: '\\mathcal{N}',
|
||||
119978: '\\mathcal{O}',
|
||||
119979: '\\mathcal{P}',
|
||||
119980: '\\mathcal{Q}',
|
||||
119982: '\\mathcal{S}',
|
||||
119983: '\\mathcal{T}',
|
||||
119984: '\\mathcal{U}',
|
||||
119985: '\\mathcal{V}',
|
||||
119986: '\\mathcal{W}',
|
||||
119987: '\\mathcal{X}',
|
||||
119988: '\\mathcal{Y}',
|
||||
119989: '\\mathcal{Z}',
|
||||
120068: '\\mathfrak{A}',
|
||||
120069: '\\mathfrak{B}',
|
||||
120071: '\\mathfrak{D}',
|
||||
120072: '\\mathfrak{E}',
|
||||
120073: '\\mathfrak{F}',
|
||||
120074: '\\mathfrak{G}',
|
||||
120077: '\\mathfrak{J}',
|
||||
120078: '\\mathfrak{K}',
|
||||
120079: '\\mathfrak{L}',
|
||||
120080: '\\mathfrak{M}',
|
||||
120081: '\\mathfrak{N}',
|
||||
120082: '\\mathfrak{O}',
|
||||
120083: '\\mathfrak{P}',
|
||||
120084: '\\mathfrak{Q}',
|
||||
120086: '\\mathfrak{S}',
|
||||
120087: '\\mathfrak{T}',
|
||||
120088: '\\mathfrak{U}',
|
||||
120089: '\\mathfrak{V}',
|
||||
120090: '\\mathfrak{W}',
|
||||
120091: '\\mathfrak{X}',
|
||||
120092: '\\mathfrak{Y}',
|
||||
120094: '\\mathfrak{a}',
|
||||
120095: '\\mathfrak{b}',
|
||||
120096: '\\mathfrak{c}',
|
||||
120097: '\\mathfrak{d}',
|
||||
120098: '\\mathfrak{e}',
|
||||
120099: '\\mathfrak{f}',
|
||||
120100: '\\mathfrak{g}',
|
||||
120101: '\\mathfrak{h}',
|
||||
120102: '\\mathfrak{i}',
|
||||
120103: '\\mathfrak{j}',
|
||||
120104: '\\mathfrak{k}',
|
||||
120105: '\\mathfrak{l}',
|
||||
120106: '\\mathfrak{m}',
|
||||
120107: '\\mathfrak{n}',
|
||||
120108: '\\mathfrak{o}',
|
||||
120109: '\\mathfrak{p}',
|
||||
120110: '\\mathfrak{q}',
|
||||
120111: '\\mathfrak{r}',
|
||||
120112: '\\mathfrak{s}',
|
||||
120113: '\\mathfrak{t}',
|
||||
120114: '\\mathfrak{u}',
|
||||
120115: '\\mathfrak{v}',
|
||||
120116: '\\mathfrak{w}',
|
||||
120117: '\\mathfrak{x}',
|
||||
120118: '\\mathfrak{y}',
|
||||
120119: '\\mathfrak{z}',
|
||||
120120: '\\mathbb{A}',
|
||||
120121: '\\mathbb{B}',
|
||||
120123: '\\mathbb{D}',
|
||||
120124: '\\mathbb{E}',
|
||||
120125: '\\mathbb{F}',
|
||||
120126: '\\mathbb{G}',
|
||||
120128: '\\mathbb{I}',
|
||||
120129: '\\mathbb{J}',
|
||||
120130: '\\mathbb{K}',
|
||||
120131: '\\mathbb{L}',
|
||||
120132: '\\mathbb{M}',
|
||||
120134: '\\mathbb{O}',
|
||||
120138: '\\mathbb{S}',
|
||||
120139: '\\mathbb{T}',
|
||||
120140: '\\mathbb{U}',
|
||||
120141: '\\mathbb{V}',
|
||||
120142: '\\mathbb{W}',
|
||||
120143: '\\mathbb{X}',
|
||||
120144: '\\mathbb{Y}',
|
||||
120156: '\\Bbbk ',
|
||||
120224: '\\mathsf{A}',
|
||||
120225: '\\mathsf{B}',
|
||||
120226: '\\mathsf{C}',
|
||||
120227: '\\mathsf{D}',
|
||||
120228: '\\mathsf{E}',
|
||||
120229: '\\mathsf{F}',
|
||||
120230: '\\mathsf{G}',
|
||||
120231: '\\mathsf{H}',
|
||||
120232: '\\mathsf{I}',
|
||||
120233: '\\mathsf{J}',
|
||||
120234: '\\mathsf{K}',
|
||||
120235: '\\mathsf{L}',
|
||||
120236: '\\mathsf{M}',
|
||||
120237: '\\mathsf{N}',
|
||||
120238: '\\mathsf{O}',
|
||||
120239: '\\mathsf{P}',
|
||||
120240: '\\mathsf{Q}',
|
||||
120241: '\\mathsf{R}',
|
||||
120242: '\\mathsf{S}',
|
||||
120243: '\\mathsf{T}',
|
||||
120244: '\\mathsf{U}',
|
||||
120245: '\\mathsf{V}',
|
||||
120246: '\\mathsf{W}',
|
||||
120247: '\\mathsf{X}',
|
||||
120248: '\\mathsf{Y}',
|
||||
120249: '\\mathsf{Z}',
|
||||
120250: '\\mathsf{a}',
|
||||
120251: '\\mathsf{b}',
|
||||
120252: '\\mathsf{c}',
|
||||
120253: '\\mathsf{d}',
|
||||
120254: '\\mathsf{e}',
|
||||
120255: '\\mathsf{f}',
|
||||
120256: '\\mathsf{g}',
|
||||
120257: '\\mathsf{h}',
|
||||
120258: '\\mathsf{i}',
|
||||
120259: '\\mathsf{j}',
|
||||
120260: '\\mathsf{k}',
|
||||
120261: '\\mathsf{l}',
|
||||
120262: '\\mathsf{m}',
|
||||
120263: '\\mathsf{n}',
|
||||
120264: '\\mathsf{o}',
|
||||
120265: '\\mathsf{p}',
|
||||
120266: '\\mathsf{q}',
|
||||
120267: '\\mathsf{r}',
|
||||
120268: '\\mathsf{s}',
|
||||
120269: '\\mathsf{t}',
|
||||
120270: '\\mathsf{u}',
|
||||
120271: '\\mathsf{v}',
|
||||
120272: '\\mathsf{w}',
|
||||
120273: '\\mathsf{x}',
|
||||
120274: '\\mathsf{y}',
|
||||
120275: '\\mathsf{z}',
|
||||
120432: '\\mathtt{A}',
|
||||
120433: '\\mathtt{B}',
|
||||
120434: '\\mathtt{C}',
|
||||
120435: '\\mathtt{D}',
|
||||
120436: '\\mathtt{E}',
|
||||
120437: '\\mathtt{F}',
|
||||
120438: '\\mathtt{G}',
|
||||
120439: '\\mathtt{H}',
|
||||
120440: '\\mathtt{I}',
|
||||
120441: '\\mathtt{J}',
|
||||
120442: '\\mathtt{K}',
|
||||
120443: '\\mathtt{L}',
|
||||
120444: '\\mathtt{M}',
|
||||
120445: '\\mathtt{N}',
|
||||
120446: '\\mathtt{O}',
|
||||
120447: '\\mathtt{P}',
|
||||
120448: '\\mathtt{Q}',
|
||||
120449: '\\mathtt{R}',
|
||||
120450: '\\mathtt{S}',
|
||||
120451: '\\mathtt{T}',
|
||||
120452: '\\mathtt{U}',
|
||||
120453: '\\mathtt{V}',
|
||||
120454: '\\mathtt{W}',
|
||||
120455: '\\mathtt{X}',
|
||||
120456: '\\mathtt{Y}',
|
||||
120457: '\\mathtt{Z}',
|
||||
120458: '\\mathtt{a}',
|
||||
120459: '\\mathtt{b}',
|
||||
120460: '\\mathtt{c}',
|
||||
120461: '\\mathtt{d}',
|
||||
120462: '\\mathtt{e}',
|
||||
120463: '\\mathtt{f}',
|
||||
120464: '\\mathtt{g}',
|
||||
120465: '\\mathtt{h}',
|
||||
120466: '\\mathtt{i}',
|
||||
120467: '\\mathtt{j}',
|
||||
120468: '\\mathtt{k}',
|
||||
120469: '\\mathtt{l}',
|
||||
120470: '\\mathtt{m}',
|
||||
120471: '\\mathtt{n}',
|
||||
120472: '\\mathtt{o}',
|
||||
120473: '\\mathtt{p}',
|
||||
120474: '\\mathtt{q}',
|
||||
120475: '\\mathtt{r}',
|
||||
120476: '\\mathtt{s}',
|
||||
120477: '\\mathtt{t}',
|
||||
120478: '\\mathtt{u}',
|
||||
120479: '\\mathtt{v}',
|
||||
120480: '\\mathtt{w}',
|
||||
120481: '\\mathtt{x}',
|
||||
120482: '\\mathtt{y}',
|
||||
120483: '\\mathtt{z}',
|
||||
120484: '\\imath ',
|
||||
120485: '\\jmath ',
|
||||
120490: '\\mathbf{\\Gamma}',
|
||||
120491: '\\mathbf{\\Delta}',
|
||||
120495: '\\mathbf{\\Theta}',
|
||||
120498: '\\mathbf{\\Lambda}',
|
||||
120501: '\\mathbf{\\Xi}',
|
||||
120503: '\\mathbf{\\Pi}',
|
||||
120506: '\\mathbf{\\Sigma}',
|
||||
120508: '\\mathbf{\\Upsilon}',
|
||||
120509: '\\mathbf{\\Phi}',
|
||||
120511: '\\mathbf{\\Psi}',
|
||||
120512: '\\mathbf{\\Omega}',
|
||||
120548: '\\mathit{\\Gamma}',
|
||||
120549: '\\mathit{\\Delta}',
|
||||
120553: '\\mathit{\\Theta}',
|
||||
120556: '\\mathit{\\Lambda}',
|
||||
120559: '\\mathit{\\Xi}',
|
||||
120561: '\\mathit{\\Pi}',
|
||||
120564: '\\mathit{\\Sigma}',
|
||||
120566: '\\mathit{\\Upsilon}',
|
||||
120567: '\\mathit{\\Phi}',
|
||||
120569: '\\mathit{\\Psi}',
|
||||
120570: '\\mathit{\\Omega}',
|
||||
120572: '\\alpha ',
|
||||
120573: '\\beta ',
|
||||
120574: '\\gamma ',
|
||||
120575: '\\delta ',
|
||||
120576: '\\varepsilon ',
|
||||
120577: '\\zeta ',
|
||||
120578: '\\eta ',
|
||||
120579: '\\theta ',
|
||||
120580: '\\iota ',
|
||||
120581: '\\kappa ',
|
||||
120582: '\\lambda ',
|
||||
120583: '\\mu ',
|
||||
120584: '\\nu ',
|
||||
120585: '\\xi ',
|
||||
120587: '\\pi ',
|
||||
120588: '\\rho ',
|
||||
120589: '\\varsigma ',
|
||||
120590: '\\sigma ',
|
||||
120591: '\\tau ',
|
||||
120592: '\\upsilon ',
|
||||
120593: '\\varphi ',
|
||||
120594: '\\chi ',
|
||||
120595: '\\psi ',
|
||||
120596: '\\omega ',
|
||||
120597: '\\partial ',
|
||||
120598: '\\epsilon ',
|
||||
120599: '\\vartheta ',
|
||||
120600: '\\varkappa ',
|
||||
120601: '\\phi ',
|
||||
120602: '\\varrho ',
|
||||
120603: '\\varpi ',
|
||||
120782: '\\mathbf{0}',
|
||||
120783: '\\mathbf{1}',
|
||||
120784: '\\mathbf{2}',
|
||||
120785: '\\mathbf{3}',
|
||||
120786: '\\mathbf{4}',
|
||||
120787: '\\mathbf{5}',
|
||||
120788: '\\mathbf{6}',
|
||||
120789: '\\mathbf{7}',
|
||||
120790: '\\mathbf{8}',
|
||||
120791: '\\mathbf{9}',
|
||||
120802: '\\mathsf{0}',
|
||||
120803: '\\mathsf{1}',
|
||||
120804: '\\mathsf{2}',
|
||||
120805: '\\mathsf{3}',
|
||||
120806: '\\mathsf{4}',
|
||||
120807: '\\mathsf{5}',
|
||||
120808: '\\mathsf{6}',
|
||||
120809: '\\mathsf{7}',
|
||||
120810: '\\mathsf{8}',
|
||||
120811: '\\mathsf{9}',
|
||||
120822: '\\mathtt{0}',
|
||||
120823: '\\mathtt{1}',
|
||||
120824: '\\mathtt{2}',
|
||||
120825: '\\mathtt{3}',
|
||||
120826: '\\mathtt{4}',
|
||||
120827: '\\mathtt{5}',
|
||||
120828: '\\mathtt{6}',
|
||||
120829: '\\mathtt{7}',
|
||||
120830: '\\mathtt{8}',
|
||||
120831: '\\mathtt{9}',
|
||||
}
|
||||
Reference in New Issue
Block a user