unicode2latex 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a355c24cff8d8abe4e8e5fa1a719fbbafba7f741d3743f78ba17c0802c892e28
4
+ data.tar.gz: 7614c2ad3cafd8db9e9bbac704ecec57d0f7aa36cde52fbbdd5e2a5ca7c2a25c
5
+ SHA512:
6
+ metadata.gz: 06224a26638f497e68db82f9bedd76a7da0d91414da366b02e5cf9bd7bfb025b31e0b7a5e5c1a177e9bd062c81a8e4fa05564d66e9b161dabe6f52db5f1cfaea
7
+ data.tar.gz: 7d44afda2efff2ae6f1d9a4369a429cd97960753bcb11231cc10da0b2d26ed53800410f5db8065ce34b3bbd6ab5364d54a4ad2b4d5865317bf70d6a508b3384b
data/.hound.yml ADDED
@@ -0,0 +1,3 @@
1
+ ruby:
2
+ Enabled: true
3
+ config_file: .rubocop.yml
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ # This project follows the Ribose OSS style guide.
2
+ # https://github.com/riboseinc/oss-guides
3
+ # All project-specific additions and overrides should be specified in this file.
4
+
5
+ inherit_from:
6
+ - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
7
+ AllCops:
8
+ TargetRubyVersion: 2.3
9
+ Rails:
10
+ Enabled: true
data/.travis.yml ADDED
@@ -0,0 +1,21 @@
1
+ dist: trusty
2
+ sudo: false
3
+ language: ruby
4
+ rvm:
5
+ - 2.5
6
+ - 2.4
7
+ - 2.3
8
+ - ruby-head
9
+ before_install:
10
+ - gem install bundler -v 1.16.1
11
+ - unset _JAVA_OPTIONS
12
+ - wget "http://downloads.sourceforge.net/project/plantuml/plantuml.jar?r=&ts=1424308684&use_mirror=jaist" -O plantuml.jar
13
+ - sudo mkdir -p /opt/plantuml
14
+ - sudo cp plantuml.jar /opt/plantuml
15
+ - echo "#! /bin/sh" > plantuml.sh
16
+ - echo 'exec java -jar /opt/plantuml/plantuml.jar "$@"' >> plantuml.sh
17
+ - sudo install -m 755 -D plantuml.sh /usr/bin/plantuml
18
+ - plantuml -version
19
+ matrix:
20
+ allow_failures:
21
+ - rvm: ruby-head
@@ -0,0 +1,46 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ ## Our Standards
8
+
9
+ Examples of behavior that contributes to creating a positive environment include:
10
+
11
+ * Using welcoming and inclusive language
12
+ * Being respectful of differing viewpoints and experiences
13
+ * Gracefully accepting constructive criticism
14
+ * Focusing on what is best for the community
15
+ * Showing empathy towards other community members
16
+
17
+ Examples of unacceptable behavior by participants include:
18
+
19
+ * The use of sexualized language or imagery and unwelcome sexual attention or advances
20
+ * Trolling, insulting/derogatory comments, and personal or political attacks
21
+ * Public or private harassment
22
+ * Publishing others' private information, such as a physical or electronic address, without explicit permission
23
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
24
+
25
+ ## Our Responsibilities
26
+
27
+ Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28
+
29
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30
+
31
+ ## Scope
32
+
33
+ This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34
+
35
+ ## Enforcement
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at ronald.tse@ribose.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38
+
39
+ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40
+
41
+ ## Attribution
42
+
43
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44
+
45
+ [homepage]: http://contributor-covenant.org
46
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ Encoding.default_external = Encoding::UTF_8
2
+ Encoding.default_internal = Encoding::UTF_8
3
+
4
+ source "https://rubygems.org"
5
+
6
+ # Specify your gem's dependencies in gemspec
7
+ gemspec
8
+
data/Gemfile.lock ADDED
@@ -0,0 +1,105 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ unicode2latex (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.0)
10
+ byebug (11.0.0)
11
+ coderay (1.1.2)
12
+ diff-lcs (1.3)
13
+ docile (1.3.1)
14
+ equivalent-xml (0.6.0)
15
+ nokogiri (>= 1.4.3)
16
+ ffi (1.10.0)
17
+ formatador (0.2.5)
18
+ guard (2.15.0)
19
+ formatador (>= 0.2.4)
20
+ listen (>= 2.7, < 4.0)
21
+ lumberjack (>= 1.0.12, < 2.0)
22
+ nenv (~> 0.1)
23
+ notiffany (~> 0.0)
24
+ pry (>= 0.9.12)
25
+ shellany (~> 0.0)
26
+ thor (>= 0.18.1)
27
+ guard-compat (1.2.1)
28
+ guard-rspec (4.7.3)
29
+ guard (~> 2.1)
30
+ guard-compat (~> 1.1)
31
+ rspec (>= 2.99.0, < 4.0)
32
+ json (2.2.0)
33
+ listen (3.1.5)
34
+ rb-fsevent (~> 0.9, >= 0.9.4)
35
+ rb-inotify (~> 0.9, >= 0.9.7)
36
+ ruby_dep (~> 1.2)
37
+ lumberjack (1.0.13)
38
+ method_source (0.9.2)
39
+ mini_portile2 (2.4.0)
40
+ nenv (0.3.0)
41
+ nokogiri (1.10.1)
42
+ mini_portile2 (~> 2.4.0)
43
+ notiffany (0.1.1)
44
+ nenv (~> 0.1)
45
+ shellany (~> 0.0)
46
+ parallel (1.14.0)
47
+ parser (2.6.0.0)
48
+ ast (~> 2.4.0)
49
+ powerpack (0.1.2)
50
+ pry (0.12.2)
51
+ coderay (~> 1.1.0)
52
+ method_source (~> 0.9.0)
53
+ rainbow (3.0.0)
54
+ rake (12.3.2)
55
+ rb-fsevent (0.10.3)
56
+ rb-inotify (0.10.0)
57
+ ffi (~> 1.0)
58
+ rspec (3.8.0)
59
+ rspec-core (~> 3.8.0)
60
+ rspec-expectations (~> 3.8.0)
61
+ rspec-mocks (~> 3.8.0)
62
+ rspec-core (3.8.0)
63
+ rspec-support (~> 3.8.0)
64
+ rspec-expectations (3.8.2)
65
+ diff-lcs (>= 1.2.0, < 2.0)
66
+ rspec-support (~> 3.8.0)
67
+ rspec-mocks (3.8.0)
68
+ diff-lcs (>= 1.2.0, < 2.0)
69
+ rspec-support (~> 3.8.0)
70
+ rspec-support (3.8.0)
71
+ rubocop (0.54.0)
72
+ parallel (~> 1.10)
73
+ parser (>= 2.5)
74
+ powerpack (~> 0.1)
75
+ rainbow (>= 2.2.2, < 4.0)
76
+ ruby-progressbar (~> 1.7)
77
+ unicode-display_width (~> 1.0, >= 1.0.1)
78
+ ruby-progressbar (1.10.0)
79
+ ruby_dep (1.5.0)
80
+ shellany (0.0.1)
81
+ simplecov (0.16.1)
82
+ docile (~> 1.1)
83
+ json (>= 1.8, < 3)
84
+ simplecov-html (~> 0.10.0)
85
+ simplecov-html (0.10.2)
86
+ thor (0.20.3)
87
+ unicode-display_width (1.4.1)
88
+
89
+ PLATFORMS
90
+ ruby
91
+
92
+ DEPENDENCIES
93
+ bundler (~> 2.0.1)
94
+ byebug
95
+ equivalent-xml (~> 0.6)
96
+ guard (~> 2.14)
97
+ guard-rspec (~> 4.7)
98
+ rake (~> 12.0)
99
+ rspec (~> 3.6)
100
+ rubocop (= 0.54.0)
101
+ simplecov (~> 0.15)
102
+ unicode2latex!
103
+
104
+ BUNDLED WITH
105
+ 2.0.1
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2019, Metanorma
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.adoc ADDED
@@ -0,0 +1,28 @@
1
+ = unicode2latex
2
+
3
+ image:https://img.shields.io/gem/v/unicode2latex.svg["Gem Version", link="https://rubygems.org/gems/unicode2latex"]
4
+ image:https://img.shields.io/travis/metanorma/unicode2latex/master.svg["Build Status", link="https://travis-ci.com/metanorma/unicode2latex"]
5
+ image:https://codeclimate.com/github/metanorma/unicode2latex/badges/gpa.svg["Code Climate", link="https://codeclimate.com/github/metanorma/unicode2latex"]
6
+
7
+ Gem for translating UTF8 Unicode characters to LaTeX escapes
8
+
9
+ [source,ruby]
10
+ ----
11
+ require "unicode2latex"
12
+
13
+ latex = 'M =
14
+ \begin{bmatrix}
15
+ -\sin λ_0 & \cos λ_0 & 0 \\
16
+ -\sin φ_0 \cos λ_0 & -\sin φ_0 \sin λ_0 & \cos φ_0 \\
17
+ \cos φ_0 \cos λ_0 & \cos φ_0 \sin λ_0 & \sin φ_0
18
+ \end{bmatrix}'
19
+
20
+ Unicode2Latex.unicode2latex(latex)
21
+
22
+ >> M =
23
+ \begin{bmatrix}
24
+ -\sin \lambda_0 & \cos \lambda_0 & 0 \\
25
+ -\sin \varphi_0 \cos \lambda_0 & -\sin \varphi_0 \sin \lambda_0 & \cos \varphi_0 \\
26
+ \cos \varphi_0 \cos \lambda_0 & \cos \varphi_0 \sin \lambda_0 & \sin \varphi_0
27
+ \end{bmatrix}
28
+ ----
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/rspec ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rspec' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require "pathname"
10
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path(
11
+ "../../Gemfile", Pathname.new(__FILE__).realpath
12
+ )
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rspec-core", "rspec")
18
+
@@ -0,0 +1,2 @@
1
+ require_relative "unicode2latex/version"
2
+ require_relative "unicode2latex/unicode2latex"
@@ -0,0 +1,2473 @@
1
+ module Unicode2LaTeX
2
+ class << self
3
+
4
+ #https://pastebin.com/Q4VkkNr1
5
+
6
+ SYMBOLS = {
7
+ "𝐴": "A",
8
+ "𝐵": "B",
9
+ "𝐶": "C",
10
+ "𝐷": "D",
11
+ "𝐸": "E",
12
+ "𝐹": "F",
13
+ "𝐺": "G",
14
+ "𝐻": "H",
15
+ "𝐼": "I",
16
+ "𝐽": "J",
17
+ "𝐾": "K",
18
+ "𝐿": "L",
19
+ "𝑀": "M",
20
+ "𝑁": "N",
21
+ "𝑂": "O",
22
+ "𝑃": "P",
23
+ "𝑄": "Q",
24
+ "𝑅": "R",
25
+ "𝑆": "S",
26
+ "𝑇": "T",
27
+ "𝑈": "U",
28
+ "𝑉": "V",
29
+ "𝑊": "W",
30
+ "𝑋": "X",
31
+ "𝑌": "Y",
32
+ "𝑍": "Z",
33
+ "𝑎": "a",
34
+ "𝑏": "b",
35
+ "𝑐": "c",
36
+ "𝑑": "d",
37
+ "𝑒": "e",
38
+ "𝑓": "f",
39
+ "𝑔": "g",
40
+ "h": "h",
41
+ "𝑖": "i",
42
+ "𝑗": "j",
43
+ "𝑘": "k",
44
+ "𝑙": "l",
45
+ "𝑚": "m",
46
+ "𝑛": "n",
47
+ "𝑜": "o",
48
+ "𝑝": "p",
49
+ "𝑞": "q",
50
+ "𝑟": "r",
51
+ "𝑠": "s",
52
+ "𝑡": "t",
53
+ "𝑢": "u",
54
+ "𝑣": "v",
55
+ "𝑤": "w",
56
+ "𝑥": "x",
57
+ "𝑦": "y",
58
+ "𝑧": "z",
59
+ "~": "~",
60
+ "¢": "\\cent",
61
+ "£": "\\pounds",
62
+ "¥": "\\yen",
63
+ "¨": "\\spddot",
64
+ "¬": "\\lnot",
65
+ "®": "\\circledR",
66
+ "±": "\\pm",
67
+ "µ": "\\Micro",
68
+ "·": "\\cdotp",
69
+ "×": "\\times",
70
+ "ð": "\\eth",
71
+ "÷": "\\div",
72
+ "𝚤": "\\imath",
73
+ "Ƶ": "\\Zbar",
74
+ "𝚥": "\\jmath",
75
+ "̀": "\\grave",
76
+ "́": "\\acute",
77
+ "̂": "\\hat",
78
+ "̃": "\\tilde",
79
+ "̄": "\\bar",
80
+ "̅": "\\overline",
81
+ "̆": "\\breve",
82
+ "̇": "\\dot",
83
+ "̈": "\\ddot",
84
+ "̉": "\\ovhook",
85
+ "̊": "\\mathring",
86
+ "̌": "\\check",
87
+ "̐": "\\candra",
88
+ "̒": "\\oturnedcomma",
89
+ "̕": "\\ocommatopright",
90
+ "̚": "\\droang",
91
+ "̰": "\\utilde",
92
+ "̱": "\\underbar",
93
+ "̲": "\\underline",
94
+ "̸": "\\not",
95
+ " ": "\\quad",
96
+ "―": "\\horizbar",
97
+ "‖": "\\|",
98
+ "‗": "\\twolowline",
99
+ "†": "\\dagger",
100
+ "‡": "\\ddagger",
101
+ "•": "\\smblkcircle",
102
+ "‥": "\\enleadertwodots",
103
+ "…": "\\ldots",
104
+ "′": "\\prime",
105
+ "″": "\\second",
106
+ "‴": "\\third",
107
+ "‵": "\\backprime",
108
+ "‶": "\\backdprime",
109
+ "‷": "\\backtrprime",
110
+ "‸": "\\caretinsert",
111
+ "‼": "\\Exclam",
112
+ "⁀": "\\cat",
113
+ "⁃": "\\hyphenbullet",
114
+ "⁄": "\\fracslash",
115
+ "⁇": "\\Question",
116
+ "⁐": "\\closure",
117
+ "⁗": "\\fourth",
118
+ " ": "\\:",
119
+ "€": "\\euro",
120
+ "⃐": "\\lvec",
121
+ "⃗": "\\vec",
122
+ "⃒": "\\vertoverlay",
123
+ "⃖": "\\LVec",
124
+ "⃛": "\\dddot",
125
+ "⃜": "\\ddddot",
126
+ "⃝": "\\enclosecircle",
127
+ "⃞": "\\enclosesquare",
128
+ "⃟": "\\enclosediamond",
129
+ "⃡": "\\overleftrightarrow",
130
+ "⃤": "\\enclosetriangle",
131
+ "⃧": "\\annuity",
132
+ "⃨": "\\threeunderdot",
133
+ "⃩": "\\widebridgeabove",
134
+ "⃬": "\\underrightharpoondown",
135
+ "⃭": "\\underleftharpoondown",
136
+ "⃮": "\\underleftarrow",
137
+ "⃯": "\\underrightarrow",
138
+ "⃰": "\\asteraccent",
139
+ "ℂ": "\\mathbb{C}",
140
+ "ℇ": "\\Euler",
141
+ "ℊ": "\\mathcal{g}",
142
+ "ℋ": "\\mathcal{H}",
143
+ "ℌ": "\\mathfrak{H}",
144
+ "ℍ": "\\mathbb{H}",
145
+ "ℎ": "\\Planckconst",
146
+ "ℏ": "\\hslash",
147
+ "ℐ": "\\mathcal{I}",
148
+ "ℑ": "\\Im",
149
+ "ℒ": "\\mathcal{L}",
150
+ "ℓ": "\\ell",
151
+ "ℕ": "\\mathbb{N}",
152
+ "℘": "\\wp",
153
+ "ℙ": "\\mathbb{P}",
154
+ "ℚ": "\\mathbb{Q}",
155
+ "ℛ": "\\mathcal{R}",
156
+ "ℜ": "\\Re",
157
+ "ℝ": "\\mathbb{R}",
158
+ "ℤ": "\\mathbb{Z}",
159
+ "Ω": "\\tcohm",
160
+ "℧": "\\mho",
161
+ "ℨ": "\\mathfrak{Z}",
162
+ "℩": "\\turnediota",
163
+ "Å": "\\Angstroem",
164
+ "ℬ": "\\mathcal{B}",
165
+ "ℭ": "\\mathfrak{C}",
166
+ "ℯ": "\\mathcal{e}",
167
+ "ℰ": "\\mathcal{E}",
168
+ "ℱ": "\\mathcal{F}",
169
+ "Ⅎ": "\\Finv",
170
+ "ℳ": "\\mathcal{M}",
171
+ "ℴ": "\\mathcal{o}",
172
+ "ℵ": "\\aleph",
173
+ "ℶ": "\\beth",
174
+ "ℷ": "\\gimel",
175
+ "ℸ": "\\daleth",
176
+ "ℼ": "\\mathbb{\\pi}",
177
+ "ℽ": "\\mathbb{\\gamma}",
178
+ "ℾ": "\\mathbb{\\Gamma}",
179
+ "ℿ": "\\mathbb{\\Pi}",
180
+ "⅀": "\\mathbb{\\Sigma}",
181
+ "⅁": "\\Game",
182
+ "⅂": "\\sansLturned",
183
+ "⅃": "\\sansLmirrored",
184
+ "⅄": "\\Yup",
185
+ "ⅅ": "\\CapitalDifferentialD",
186
+ "ⅆ": "\\DifferentialD",
187
+ "ⅇ": "\\ExponetialE",
188
+ "ⅈ": "\\ComplexI",
189
+ "ⅉ": "\\ComplexJ",
190
+ "⅊": "\\PropertyLine",
191
+ "⅋": "\\invamp",
192
+ "←": "\\leftarrow",
193
+ "↑": "\\uparrow",
194
+ "→": "\\rightarrow",
195
+ "↓": "\\downarrow",
196
+ "↔": "\\leftrightarrow",
197
+ "↕": "\\updownarrow",
198
+ "↖": "\\nwarrow",
199
+ "↗": "\\nearrow",
200
+ "↘": "\\searrow",
201
+ "↙": "\\swarrow",
202
+ "↚": "\\nleftarrow",
203
+ "↛": "\\nrightarrow",
204
+ "↜": "\\leftwavearrow",
205
+ "↝": "\\rightwavearrow",
206
+ "↞": "\\twoheadleftarrow",
207
+ "↟": "\\twoheaduparrow",
208
+ "↠": "\\twoheadrightarrow",
209
+ "↡": "\\twoheaddownarrow",
210
+ "↢": "\\leftarrowtail",
211
+ "↣": "\\rightarrowtail",
212
+ "↤": "\\mapsfrom",
213
+ "↥": "\\MapsUp",
214
+ "↦": "\\mapsto",
215
+ "↧": "\\MapsDown",
216
+ "↨": "\\updownarrowbar",
217
+ "↩": "\\hookleftarrow",
218
+ "↪": "\\hookrightarrow",
219
+ "↫": "\\looparrowleft",
220
+ "↬": "\\looparrowright",
221
+ "↭": "\\leftrightsquigarrow",
222
+ "↮": "\\nleftrightarrow",
223
+ "↯": "\\lightning",
224
+ "↰": "\\Lsh",
225
+ "↱": "\\Rsh",
226
+ "↲": "\\dlsh",
227
+ "↳": "\\drsh",
228
+ "↴": "\\linefeed",
229
+ "↵": "\\carriagereturn",
230
+ "↶": "\\curvearrowleft",
231
+ "↷": "\\curvearrowright",
232
+ "↸": "\\barovernorthwestarrow",
233
+ "↺": "\\circlearrowleft",
234
+ "↻": "\\circlearrowright",
235
+ "↼": "\\leftharpoonup",
236
+ "↽": "\\leftharpoondown",
237
+ "↾": "\\upharpoonright",
238
+ "↿": "\\upharpoonleft",
239
+ "⇀": "\\rightharpoonup",
240
+ "⇁": "\\rightharpoondown",
241
+ "⇂": "\\downharpoonright",
242
+ "⇃": "\\downharpoonleft",
243
+ "⇄": "\\rightleftarrows",
244
+ "⇅": "\\updownarrows",
245
+ "⇆": "\\leftrightarrows",
246
+ "⇇": "\\leftleftarrows",
247
+ "⇈": "\\upuparrows",
248
+ "⇉": "\\rightrightarrows",
249
+ "⇊": "\\downdownarrows",
250
+ "⇋": "\\leftrightharpoons",
251
+ "⇌": "\\rightleftharpoons",
252
+ "⇍": "\\nLeftarrow",
253
+ "⇎": "\\nLeftrightarrow",
254
+ "⇏": "\\nRightarrow",
255
+ "⇐": "\\Leftarrow",
256
+ "⇑": "\\Uparrow",
257
+ "⇒": "\\Rightarrow",
258
+ "⇓": "\\Downarrow",
259
+ "⇔": "\\Leftrightarrow",
260
+ "⇕": "\\Updownarrow",
261
+ "⇖": "\\Nwarrow",
262
+ "⇗": "\\Nearrow",
263
+ "⇘": "\\Searrow",
264
+ "⇙": "\\Swarrow",
265
+ "⇚": "\\Lleftarrow",
266
+ "⇛": "\\Rrightarrow",
267
+ "⇜": "\\leftsquigarrow",
268
+ "⇝": "\\rightsquigarrow",
269
+ "⇞": "\\nHuparrow",
270
+ "⇟": "\\nHdownarrow",
271
+ "⇠": "\\dashleftarrow",
272
+ "⇡": "\\updasharrow",
273
+ "⇢": "\\dashrightarrow",
274
+ "⇣": "\\downdasharrow",
275
+ "⇤": "\\LeftArrowBar",
276
+ "⇥": "\\RightArrowBar",
277
+ "⇦": "\\leftwhitearrow",
278
+ "⇧": "\\upwhitearrow",
279
+ "⇨": "\\rightwhitearrow",
280
+ "⇩": "\\downwhitearrow",
281
+ "⇪": "\\whitearrowupfrombar",
282
+ "⍹": "\\mathord",
283
+ "⇴": "\\circleonrightarrow",
284
+ "⇵": "\\downuparrows",
285
+ "⇶": "\\rightthreearrows",
286
+ "⇷": "\\nvleftarrow",
287
+ "⇸": "\\pfun",
288
+ "⇹": "\\nvleftrightarrow",
289
+ "⇺": "\\nVleftarrow",
290
+ "⇻": "\\ffun",
291
+ "⇼": "\\nVleftrightarrow",
292
+ "⇽": "\\leftarrowtriangle",
293
+ "⇾": "\\rightarrowtriangle",
294
+ "⇿": "\\leftrightarrowtriangle",
295
+ "∀": "\\forall",
296
+ "∁": "\\complement",
297
+ "𝜕": "\\partial",
298
+ "∃": "\\exists",
299
+ "∄": "\\nexists",
300
+ "∅": "\\emptyset",
301
+ "∆": "\\increment",
302
+ "∇": "\\nabla",
303
+ "∈": "\\in",
304
+ "∉": "\\notin",
305
+ "∊": "\\smallin",
306
+ "∋": "\\ni",
307
+ "∌": "\\nni",
308
+ "∍": "\\smallni",
309
+ "∎": "\\QED",
310
+ "∏": "\\prod",
311
+ "∐": "\\coprod",
312
+ "∑": "\\sum",
313
+ "−": "-",
314
+ "∓": "\\mp",
315
+ "∔": "\\dotplus",
316
+ "∕": "\\slash",
317
+ "∖": "\\smallsetminus",
318
+ "∗": "\\ast",
319
+ "∘": "\\circ",
320
+ "∙": "\\bullet",
321
+ "√": "\\sqrt",
322
+ "∛": "\\sqrt[3]",
323
+ "∜": "\\sqrt[4]",
324
+ "∝": "\\propto",
325
+ "∞": "\\infty",
326
+ "∟": "\\rightangle",
327
+ "∠": "\\angle",
328
+ "∡": "\\measuredangle",
329
+ "∢": "\\sphericalangle",
330
+ "∣": "\\mid",
331
+ "∤": "\\nmid",
332
+ "∥": "\\parallel",
333
+ "∦": "\\nparallel",
334
+ "∧": "\\land",
335
+ "∨": "\\lor",
336
+ "∩": "\\cap",
337
+ "∪": "\\cup",
338
+ "∫": "\\int",
339
+ "∬": "\\iint",
340
+ "∭": "\\iiint",
341
+ "∮": "\\oint",
342
+ "∯": "\\oiint",
343
+ "∰": "\\oiiint",
344
+ "∱": "\\intclockwise",
345
+ "∲": "\\varointclockwise",
346
+ "∳": "\\ointctrclockwise",
347
+ "∴": "\\therefore",
348
+ "∵": "\\because",
349
+ "∷": "\\Proportion",
350
+ "∸": "\\dotminus",
351
+ "≕": "\\eqcolon",
352
+ "∺": "\\dotsminusdots",
353
+ "∻": "\\kernelcontraction",
354
+ "∼": "\\sim",
355
+ "∽": "\\backsim",
356
+ "∾": "\\invlazys",
357
+ "∿": "\\AC",
358
+ "≀": "\\wr",
359
+ "≁": "\\nsim",
360
+ "≂": "\\eqsim",
361
+ "≃": "\\simeq",
362
+ "≄": "\\nsimeq",
363
+ "≅": "\\cong",
364
+ "≆": "\\simneqq",
365
+ "≇": "\\ncong",
366
+ "≈": "\\approx",
367
+ "≉": "\\napprox",
368
+ "≊": "\\approxeq",
369
+ "≋": "\\approxident",
370
+ "≌": "\\backcong",
371
+ "≍": "\\asymp",
372
+ "≎": "\\Bumpeq",
373
+ "≏": "\\bumpeq",
374
+ "≐": "\\doteq",
375
+ "≑": "\\Doteq",
376
+ "≒": "\\fallingdotseq",
377
+ "≓": "\\risingdotseq",
378
+ "≔": "\\coloneq",
379
+ "≖": "\\eqcirc",
380
+ "≗": "\\circeq",
381
+ "≘": "\\arceq",
382
+ "≙": "\\corresponds",
383
+ "≚": "\\veeeq",
384
+ "≛": "\\stareq",
385
+ "≜": "\\triangleq",
386
+ "≝": "\\eqdef",
387
+ "≞": "\\measeq",
388
+ "≟": "\\questeq",
389
+ "≠": "\\neq",
390
+ "≡": "\\equiv",
391
+ "≢": "\\nequiv",
392
+ "≣": "\\Equiv",
393
+ "≤": "\\leq",
394
+ "≥": "\\geq",
395
+ "≦": "\\leqq",
396
+ "≧": "\\geqq",
397
+ "≨": "\\lneqq",
398
+ "≩": "\\gneqq",
399
+ "≪": "\\ll",
400
+ "≫": "\\gg",
401
+ "≬": "\\between",
402
+ "≭": "\\notasymp",
403
+ "≮": "\\nless",
404
+ "≯": "\\ngtr",
405
+ "≰": "\\nleq",
406
+ "≱": "\\ngeq",
407
+ "≲": "\\lesssim",
408
+ "≳": "\\gtrsim",
409
+ "≴": "\\NotLessTilde",
410
+ "≵": "\\NotGreaterTilde",
411
+ "≶": "\\lessgtr",
412
+ "≷": "\\gtrless",
413
+ "≸": "\\nlessgtr",
414
+ "≹": "\\NotGreaterLess",
415
+ "≺": "\\prec",
416
+ "≻": "\\succ",
417
+ "≼": "\\preccurlyeq",
418
+ "≽": "\\succcurlyeq",
419
+ "≾": "\\precsim",
420
+ "≿": "\\succsim",
421
+ "⊀": "\\nprec",
422
+ "⊁": "\\nsucc",
423
+ "⊂": "\\subset",
424
+ "⊃": "\\supset",
425
+ "⊄": "\\nsubset",
426
+ "⊅": "\\nsupset",
427
+ "⊆": "\\subseteq",
428
+ "⊇": "\\supseteq",
429
+ "⊈": "\\nsubseteq",
430
+ "⊉": "\\nsupseteq",
431
+ "⊊": "\\subsetneq",
432
+ "⊋": "\\supsetneq",
433
+ "⊌": "\\cupleftarrow",
434
+ "⊍": "\\cupdot",
435
+ "⊎": "\\uplus",
436
+ "⊏": "\\sqsubset",
437
+ "⊐": "\\sqsupset",
438
+ "⊑": "\\sqsubseteq",
439
+ "⊒": "\\sqsupseteq",
440
+ "⊓": "\\sqcap",
441
+ "⊔": "\\sqcup",
442
+ "⊕": "\\oplus",
443
+ "⊖": "\\ominus",
444
+ "⊗": "\\otimes",
445
+ "⊘": "\\oslash",
446
+ "⊙": "\\odot",
447
+ "⊚": "\\circledcirc",
448
+ "⊛": "\\circledast",
449
+ "⊜": "\\circledequal",
450
+ "⊝": "\\circleddash",
451
+ "⊞": "\\boxplus",
452
+ "⊟": "\\boxminus",
453
+ "⊠": "\\boxtimes",
454
+ "⊡": "\\boxdot",
455
+ "⊢": "\\vdash",
456
+ "⊣": "\\dashv",
457
+ "⊤": "\\top",
458
+ "⊥": "\\bot",
459
+ "⊦": "\\assert",
460
+ "⊧": "\\models",
461
+ "⊨": "\\vDash",
462
+ "⊩": "\\Vdash",
463
+ "⊪": "\\Vvdash",
464
+ "⊫": "\\VDash",
465
+ "⊬": "\\nvdash",
466
+ "⊭": "\\nvDash",
467
+ "⊮": "\\nVdash",
468
+ "⊯": "\\nVDash",
469
+ "⊰": "\\prurel",
470
+ "⊱": "\\scurel",
471
+ "⊲": "\\vartriangleleft",
472
+ "⊳": "\\vartriangleright",
473
+ "⊴": "\\trianglelefteq",
474
+ "⊵": "\\trianglerighteq",
475
+ "⊶": "\\multimapdotbothA",
476
+ "⊷": "\\multimapdotbothB",
477
+ "⊸": "\\multimap",
478
+ "⊹": "\\hermitmatrix",
479
+ "⊺": "\\intercal",
480
+ "⊻": "\\veebar",
481
+ "⊼": "\\barwedge",
482
+ "⊽": "\\barvee",
483
+ "⊾": "\\measuredrightangle",
484
+ "⊿": "\\varlrtriangle",
485
+ "⋀": "\\bigwedge",
486
+ "⋁": "\\bigvee",
487
+ "⋂": "\\bigcap",
488
+ "⋃": "\\bigcup",
489
+ "⋄": "\\diamond",
490
+ "⋅": "\\cdot",
491
+ "⋆": "\\star",
492
+ "⋇": "\\divideontimes",
493
+ "⋈": "\\bowtie",
494
+ "⋉": "\\ltimes",
495
+ "⋊": "\\rtimes",
496
+ "⋋": "\\leftthreetimes",
497
+ "⋌": "\\rightthreetimes",
498
+ "⋍": "\\backsimeq",
499
+ "⋎": "\\curlyvee",
500
+ "⋏": "\\curlywedge",
501
+ "⋐": "\\Subset",
502
+ "⋑": "\\Supset",
503
+ "⋒": "\\Cap",
504
+ "⋓": "\\Cup",
505
+ "⋔": "\\pitchfork",
506
+ "⋕": "\\hash",
507
+ "⋖": "\\lessdot",
508
+ "⋗": "\\gtrdot",
509
+ "⋘": "\\lll",
510
+ "⋙": "\\ggg",
511
+ "⋚": "\\lesseqgtr",
512
+ "⋛": "\\gtreqless",
513
+ "⋜": "\\eqless",
514
+ "⋝": "\\eqgtr",
515
+ "⋞": "\\curlyeqprec",
516
+ "⋟": "\\curlyeqsucc",
517
+ "⋠": "\\npreceq",
518
+ "⋡": "\\nsucceq",
519
+ "⋢": "\\nsqsubseteq",
520
+ "⋣": "\\nsqsupseteq",
521
+ "⋤": "\\sqsubsetneq",
522
+ "⋥": "\\sqsupsetneq",
523
+ "⋦": "\\lnsim",
524
+ "⋧": "\\gnsim",
525
+ "⋨": "\\precnsim",
526
+ "⋩": "\\succnsim",
527
+ "⋪": "\\ntriangleleft",
528
+ "⋫": "\\ntriangleright",
529
+ "⋬": "\\ntrianglelefteq",
530
+ "⋭": "\\ntrianglerighteq",
531
+ "⋮": "\\vdots",
532
+ "⋯": "\\cdots",
533
+ "⋰": "\\iddots",
534
+ "⋱": "\\ddots",
535
+ "⋲": "\\disin",
536
+ "⋳": "\\varisins",
537
+ "⋴": "\\isins",
538
+ "⋵": "\\isindot",
539
+ "⋶": "\\barin",
540
+ "⋷": "\\isinobar",
541
+ "⋸": "\\isinvb",
542
+ "⋹": "\\isinE",
543
+ "⋺": "\\nisd",
544
+ "⋻": "\\varnis",
545
+ "⋼": "\\nis",
546
+ "⋽": "\\varniobar",
547
+ "⋾": "\\niobar",
548
+ "⋿": "\\bagmember",
549
+ "⌀": "\\diameter",
550
+ "⌂": "\\house",
551
+ "⌅": "\\varbarwedge",
552
+ "⌆": "\\vardoublebarwedge",
553
+ "⌈": "\\lceil",
554
+ "⌉": "\\rceil",
555
+ "⌊": "\\lfloor",
556
+ "⌋": "\\rfloor",
557
+ "⌐": "\\invneg",
558
+ "⌑": "\\wasylozenge",
559
+ "⌒": "\\profline",
560
+ "⌓": "\\profsurf",
561
+ "⌗": "\\viewdata",
562
+ "⌙": "\\turnednot",
563
+ "⌜": "\\ulcorner",
564
+ "⌝": "\\urcorner",
565
+ "⌞": "\\llcorner",
566
+ "⌟": "\\lrcorner",
567
+ "⌠": "\\inttop",
568
+ "⌡": "\\intbottom",
569
+ "⌢": "\\frown",
570
+ "⌣": "\\smile",
571
+ "⌬": "\\varhexagonlrbonds",
572
+ "⌲": "\\conictaper",
573
+ "⌶": "\\topbot",
574
+ "⌹": "\\APLinv",
575
+ "⌽": "\\obar",
576
+ "⌿": "\\notslash",
577
+ "⍀": "\\notbackslash",
578
+ "⍇": "\\APLleftarrowbox",
579
+ "⍈": "\\APLrightarrowbox",
580
+ "⍐": "\\APLuparrowbox",
581
+ "⍓": "\\APLboxupcaret",
582
+ "⍗": "\\APLdownarrowbox",
583
+ "⍝": "\\APLcomment",
584
+ "⍞": "\\APLinput",
585
+ "⍟": "\\APLlog",
586
+ "⍰": "\\APLboxquestion",
587
+ "⍼": "\\rangledownzigzagarrow",
588
+ "⎔": "\\hexagon",
589
+ "⎛": "\\lparenuend",
590
+ "⎜": "\\lparenextender",
591
+ "⎝": "\\lparenlend",
592
+ "⎞": "\\rparenuend",
593
+ "⎟": "\\rparenextender",
594
+ "⎠": "\\rparenlend",
595
+ "⎡": "\\lbrackuend",
596
+ "⎢": "\\lbrackextender",
597
+ "⎣": "\\lbracklend",
598
+ "⎤": "\\rbrackuend",
599
+ "⎥": "\\rbrackextender",
600
+ "⎦": "\\rbracklend",
601
+ "⎧": "\\lbraceuend",
602
+ "⎨": "\\lbracemid",
603
+ "⎩": "\\lbracelend",
604
+ "⎪": "\\vbraceextender",
605
+ "⎫": "\\rbraceuend",
606
+ "⎬": "\\rbracemid",
607
+ "⎭": "\\rbracelend",
608
+ "⎮": "\\intextender",
609
+ "⎯": "\\harrowextender",
610
+ "⎰": "\\lmoustache",
611
+ "⎱": "\\rmoustache",
612
+ "⎲": "\\sumtop",
613
+ "⎳": "\\sumbottom",
614
+ "⎴": "\\overbracket",
615
+ "⎵": "\\underbracket",
616
+ "⎶": "\\bbrktbrk",
617
+ "⎷": "\\sqrtbottom",
618
+ "⎸": "\\lvboxline",
619
+ "⎹": "\\rvboxline",
620
+ "⏎": "\\varcarriagereturn",
621
+ "⏜": "\\overparen",
622
+ "⏝": "\\underparen",
623
+ "⏞": "\\overbrace",
624
+ "⏟": "\\underbrace",
625
+ "⏠": "\\obrbrak",
626
+ "⏡": "\\ubrbrak",
627
+ "⏢": "\\trapezium",
628
+ "⏣": "\\benzenr",
629
+ "⏤": "\\strns",
630
+ "⏥": "\\fltns",
631
+ "⏦": "\\accurrent",
632
+ "⏧": "\\elinters",
633
+ "┆": "\\bdtriplevdash",
634
+ "▀": "\\blockuphalf",
635
+ "▄": "\\blocklowhalf",
636
+ "█": "\\blockfull",
637
+ "▌": "\\blocklefthalf",
638
+ "▐": "\\blockrighthalf",
639
+ "░": "\\blockqtrshaded",
640
+ "▒": "\\blockhalfshaded",
641
+ "▓": "\\blockthreeqtrshaded",
642
+ "■": "\\mdlgblksquare",
643
+ "□": "\\mdlgwhtsquare",
644
+ "▢": "\\squoval",
645
+ "▣": "\\blackinwhitesquare",
646
+ "▤": "\\squarehfill",
647
+ "▥": "\\squarevfill",
648
+ "▦": "\\squarehvfill",
649
+ "▧": "\\squarenwsefill",
650
+ "▨": "\\squareneswfill",
651
+ "▩": "\\squarecrossfill",
652
+ "▪": "\\smblksquare",
653
+ "▫": "\\smwhtsquare",
654
+ "▬": "\\hrectangleblack",
655
+ "▭": "\\hrectangle",
656
+ "▮": "\\vrectangleblack",
657
+ "▯": "\\vrectangle",
658
+ "▰": "\\parallelogramblack",
659
+ "▱": "\\parallelogram",
660
+ "▲": "\\bigblacktriangleup",
661
+ "△": "\\bigtriangleup",
662
+ "▴": "\\blacktriangleup",
663
+ "▵": "\\smalltriangleup",
664
+ "▶": "\\RHD",
665
+ "▷": "\\rhd",
666
+ "▸": "\\blacktriangleright",
667
+ "▹": "\\smalltriangleright",
668
+ "►": "\\blackpointerright",
669
+ "▻": "\\whitepointerright",
670
+ "▼": "\\bigblacktriangledown",
671
+ "▽": "\\bigtriangledown",
672
+ "▾": "\\blacktriangledown",
673
+ "▿": "\\smalltriangledown",
674
+ "◀": "\\LHD",
675
+ "◁": "\\lhd",
676
+ "◂": "\\blacktriangleleft",
677
+ "◃": "\\smalltriangleleft",
678
+ "◄": "\\blackpointerleft",
679
+ "◅": "\\whitepointerleft",
680
+ "◆": "\\Diamondblack",
681
+ "◇": "\\Diamond",
682
+ "◈": "\\blackinwhitediamond",
683
+ "◉": "\\fisheye",
684
+ "◊": "\\lozenge",
685
+ "○": "\\Circle",
686
+ "◌": "\\dottedcircle",
687
+ "◍": "\\circlevertfill",
688
+ "◎": "\\bullseye",
689
+ "●": "\\CIRCLE",
690
+ "◐": "\\LEFTcircle",
691
+ "◑": "\\RIGHTcircle",
692
+ "◒": "\\circlebottomhalfblack",
693
+ "◓": "\\circletophalfblack",
694
+ "◔": "\\circleurquadblack",
695
+ "◕": "\\blackcircleulquadwhite",
696
+ "◖": "\\LEFTCIRCLE",
697
+ "◗": "\\RIGHTCIRCLE",
698
+ "◘": "\\inversebullet",
699
+ "◙": "\\inversewhitecircle",
700
+ "◚": "\\invwhiteupperhalfcircle",
701
+ "◛": "\\invwhitelowerhalfcircle",
702
+ "◜": "\\ularc",
703
+ "◝": "\\urarc",
704
+ "◞": "\\lrarc",
705
+ "◟": "\\llarc",
706
+ "◠": "\\topsemicircle",
707
+ "◡": "\\botsemicircle",
708
+ "◢": "\\lrblacktriangle",
709
+ "◣": "\\llblacktriangle",
710
+ "◤": "\\ulblacktriangle",
711
+ "◥": "\\urblacktriangle",
712
+ "◦": "\\smwhtcircle",
713
+ "◧": "\\squareleftblack",
714
+ "◨": "\\squarerightblack",
715
+ "◩": "\\squareulblack",
716
+ "◪": "\\squarelrblack",
717
+ "◫": "\\boxbar",
718
+ "◬": "\\trianglecdot",
719
+ "◭": "\\triangleleftblack",
720
+ "◮": "\\trianglerightblack",
721
+ "◯": "\\lgwhtcircle",
722
+ "◰": "\\squareulquad",
723
+ "◱": "\\squarellquad",
724
+ "◲": "\\squarelrquad",
725
+ "◳": "\\squareurquad",
726
+ "◴": "\\circleulquad",
727
+ "◵": "\\circlellquad",
728
+ "◶": "\\circlelrquad",
729
+ "◷": "\\circleurquad",
730
+ "◸": "\\ultriangle",
731
+ "◹": "\\urtriangle",
732
+ "◺": "\\lltriangle",
733
+ "⬜": "\\square",
734
+ "⬛": "\\blacksquare",
735
+ "◽": "\\mdsmwhtsquare",
736
+ "◾": "\\mdsmblksquare",
737
+ "◿": "\\lrtriangle",
738
+ "★": "\\bigstar",
739
+ "☆": "\\bigwhitestar",
740
+ "☉": "\\Sun",
741
+ "☐": "\\Square",
742
+ "☑": "\\CheckedBox",
743
+ "☒": "\\XBox",
744
+ "☕": "\\steaming",
745
+ "☞": "\\pointright",
746
+ "☠": "\\skull",
747
+ "☡": "\\danger",
748
+ "☢": "\\radiation",
749
+ "☣": "\\biohazard",
750
+ "☯": "\\yinyang",
751
+ "☹": "\\frownie",
752
+ "☺": "\\smiley",
753
+ "☻": "\\blacksmiley",
754
+ "☼": "\\sun",
755
+ "☽": "\\rightmoon",
756
+ "☾": "\\leftmoon",
757
+ "☿": "\\mercury",
758
+ "♀": "\\female",
759
+ "♁": "\\earth",
760
+ "♂": "\\male",
761
+ "♃": "\\jupiter",
762
+ "♄": "\\saturn",
763
+ "♅": "\\uranus",
764
+ "♆": "\\neptune",
765
+ "♇": "\\pluto",
766
+ "♈": "\\aries",
767
+ "♉": "\\taurus",
768
+ "♊": "\\gemini",
769
+ "♋": "\\cancer",
770
+ "♌": "\\leo",
771
+ "♍": "\\virgo",
772
+ "♎": "\\libra",
773
+ "♏": "\\scorpio",
774
+ "♐": "\\sagittarius",
775
+ "♑": "\\capricornus",
776
+ "♒": "\\aquarius",
777
+ "♓": "\\pisces",
778
+ "♠": "\\spadesuit",
779
+ "♡": "\\heartsuit",
780
+ "♢": "\\diamondsuit",
781
+ "♣": "\\clubsuit",
782
+ "♤": "\\varspadesuit",
783
+ "♥": "\\varheartsuit",
784
+ "♦": "\\vardiamondsuit",
785
+ "♧": "\\varclubsuit",
786
+ "♩": "\\quarternote",
787
+ "♪": "\\eighthnote",
788
+ "♫": "\\twonotes",
789
+ "♬": "\\sixteenthnote",
790
+ "♭": "\\flat",
791
+ "♮": "\\natural",
792
+ "♯": "\\sharp",
793
+ "♻": "\\recycle",
794
+ "♾": "\\acidfree",
795
+ "⚀": "\\dicei",
796
+ "⚁": "\\diceii",
797
+ "⚂": "\\diceiii",
798
+ "⚃": "\\diceiv",
799
+ "⚄": "\\dicev",
800
+ "⚅": "\\dicevi",
801
+ "⚆": "\\circledrightdot",
802
+ "⚇": "\\circledtwodots",
803
+ "⚈": "\\blackcircledrightdot",
804
+ "⚉": "\\blackcircledtwodots",
805
+ "⚓": "\\anchor",
806
+ "⚔": "\\swords",
807
+ "⚠": "\\warning",
808
+ "⚥": "\\Hermaphrodite",
809
+ "⚪": "\\medcirc",
810
+ "⚫": "\\medbullet",
811
+ "⚬": "\\mdsmwhtcircle",
812
+ "⚲": "\\neuter",
813
+ "✎": "\\pencil",
814
+ "✓": "\\checkmark",
815
+ "✗": "\\ballotx",
816
+ "✠": "\\maltese",
817
+ "✪": "\\circledstar",
818
+ "✶": "\\varstar",
819
+ "✽": "\\dingasterisk",
820
+ "〔": "\\lbrbrak",
821
+ "〕": "\\rbrbrak",
822
+ "➛": "\\draftingarrow",
823
+ "➢": "\\arrowbullet",
824
+ "⟀": "\\threedangle",
825
+ "⟁": "\\whiteinwhitetriangle",
826
+ "⟂": "\\perp",
827
+ "⟃": "\\subsetcirc",
828
+ "⟄": "\\supsetcirc",
829
+ "⟅": "\\Lbag",
830
+ "⟆": "\\Rbag",
831
+ "⟇": "\\veedot",
832
+ "⟈": "\\bsolhsub",
833
+ "⟉": "\\suphsol",
834
+ "⟌": "\\longdivision",
835
+ "⟐": "\\Diamonddot",
836
+ "⟑": "\\wedgedot",
837
+ "⟒": "\\upin",
838
+ "⟓": "\\pullback",
839
+ "⟔": "\\pushout",
840
+ "⟕": "\\leftouterjoin",
841
+ "⟖": "\\rightouterjoin",
842
+ "⟗": "\\fullouterjoin",
843
+ "⟘": "\\bigbot",
844
+ "⟙": "\\bigtop",
845
+ "⟚": "\\DashVDash",
846
+ "⟛": "\\dashVdash",
847
+ "⟜": "\\multimapinv",
848
+ "⟝": "\\vlongdash",
849
+ "⟞": "\\longdashv",
850
+ "⟟": "\\cirbot",
851
+ "⟠": "\\lozengeminus",
852
+ "⟡": "\\concavediamond",
853
+ "⟢": "\\concavediamondtickleft",
854
+ "⟣": "\\concavediamondtickright",
855
+ "⟤": "\\whitesquaretickleft",
856
+ "⟥": "\\whitesquaretickright",
857
+ "⟦": "\\llbracket",
858
+ "⟧": "\\rrbracket",
859
+ "⟨": "\\langle",
860
+ "⟩": "\\rangle",
861
+ "⟪": "\\lang",
862
+ "⟫": "\\rang",
863
+ "〘": "\\Lbrbrak",
864
+ "〙": "\\Rbrbrak",
865
+ "⟮": "\\lgroup",
866
+ "⟯": "\\rgroup",
867
+ "⟰": "\\UUparrow",
868
+ "⟱": "\\DDownarrow",
869
+ "⟲": "\\acwgapcirclearrow",
870
+ "⟳": "\\cwgapcirclearrow",
871
+ "⟴": "\\rightarrowonoplus",
872
+ "⟵": "\\longleftarrow",
873
+ "⟶": "\\longrightarrow",
874
+ "⟷": "\\longleftrightarrow",
875
+ "⟸": "\\Longleftarrow",
876
+ "⟹": "\\Longrightarrow",
877
+ "⟺": "\\Longleftrightarrow",
878
+ "⟻": "\\longmapsfrom",
879
+ "⟼": "\\longmapsto",
880
+ "⟽": "\\Longmapsfrom",
881
+ "⟾": "\\Longmapsto",
882
+ "⟿": "\\longrightsquigarrow",
883
+ "⤀": "\\psur",
884
+ "⤁": "\\nVtwoheadrightarrow",
885
+ "⤂": "\\nvLeftarrow",
886
+ "⤃": "\\nvRightarrow",
887
+ "⤄": "\\nvLeftrightarrow",
888
+ "⤅": "\\twoheadmapsto",
889
+ "⤆": "\\Mapsfrom",
890
+ "⤇": "\\Mapsto",
891
+ "⤈": "\\downarrowbarred",
892
+ "⤉": "\\uparrowbarred",
893
+ "⤊": "\\Uuparrow",
894
+ "⤋": "\\Ddownarrow",
895
+ "⤌": "\\leftbkarrow",
896
+ "⤍": "\\rightbkarrow",
897
+ "⤎": "\\leftdbkarrow",
898
+ "⤏": "\\dbkarow",
899
+ "⤐": "\\drbkarow",
900
+ "⤑": "\\rightdotarrow",
901
+ "⤒": "\\UpArrowBar",
902
+ "⤓": "\\DownArrowBar",
903
+ "⤔": "\\pinj",
904
+ "⤕": "\\finj",
905
+ "⤖": "\\bij",
906
+ "⤗": "\\nvtwoheadrightarrowtail",
907
+ "⤘": "\\nVtwoheadrightarrowtail",
908
+ "⤙": "\\lefttail",
909
+ "⤚": "\\righttail",
910
+ "⤛": "\\leftdbltail",
911
+ "⤜": "\\rightdbltail",
912
+ "⤝": "\\diamondleftarrow",
913
+ "⤞": "\\rightarrowdiamond",
914
+ "⤟": "\\diamondleftarrowbar",
915
+ "⤠": "\\barrightarrowdiamond",
916
+ "⤡": "\\nwsearrow",
917
+ "⤢": "\\neswarrow",
918
+ "⤣": "\\hknwarrow",
919
+ "⤤": "\\hknearrow",
920
+ "⤥": "\\hksearow",
921
+ "⤦": "\\hkswarow",
922
+ "⤧": "\\tona",
923
+ "⤨": "\\toea",
924
+ "⤩": "\\tosa",
925
+ "⤪": "\\towa",
926
+ "⤫": "\\rdiagovfdiag",
927
+ "⤬": "\\fdiagovrdiag",
928
+ "⤭": "\\seovnearrow",
929
+ "⤮": "\\neovsearrow",
930
+ "⤯": "\\fdiagovnearrow",
931
+ "⤰": "\\rdiagovsearrow",
932
+ "⤱": "\\neovnwarrow",
933
+ "⤲": "\\nwovnearrow",
934
+ "⤳": "\\leadsto",
935
+ "⤴": "\\uprightcurvearrow",
936
+ "⤵": "\\downrightcurvedarrow",
937
+ "⤶": "\\leftdowncurvedarrow",
938
+ "⤷": "\\rightdowncurvedarrow",
939
+ "⤸": "\\cwrightarcarrow",
940
+ "⤹": "\\acwleftarcarrow",
941
+ "⤺": "\\acwoverarcarrow",
942
+ "⤻": "\\acwunderarcarrow",
943
+ "⤼": "\\curvearrowrightminus",
944
+ "⤽": "\\curvearrowleftplus",
945
+ "⤾": "\\cwundercurvearrow",
946
+ "⤿": "\\ccwundercurvearrow",
947
+ "⥀": "\\acwcirclearrow",
948
+ "⥁": "\\cwcirclearrow",
949
+ "⥂": "\\rightarrowshortleftarrow",
950
+ "⥃": "\\leftarrowshortrightarrow",
951
+ "⥄": "\\shortrightarrowleftarrow",
952
+ "⥅": "\\rightarrowplus",
953
+ "⥆": "\\leftarrowplus",
954
+ "⥇": "\\rightarrowx",
955
+ "⥈": "\\leftrightarrowcircle",
956
+ "⥉": "\\twoheaduparrowcircle",
957
+ "⥊": "\\leftrightharpoon",
958
+ "⥋": "\\rightleftharpoon",
959
+ "⥌": "\\updownharpoonrightleft",
960
+ "⥍": "\\updownharpoonleftright",
961
+ "⥎": "\\leftrightharpoonup",
962
+ "⥏": "\\rightupdownharpoon",
963
+ "⥐": "\\leftrightharpoondown",
964
+ "⥑": "\\leftupdownharpoon",
965
+ "⥒": "\\LeftVectorBar",
966
+ "⥓": "\\RightVectorBar",
967
+ "⥔": "\\RightUpVectorBar",
968
+ "⥕": "\\RightDownVectorBar",
969
+ "⥖": "\\DownLeftVectorBar",
970
+ "⥗": "\\DownRightVectorBar",
971
+ "⥘": "\\LeftUpVectorBar",
972
+ "⥙": "\\LeftDownVectorBar",
973
+ "⥚": "\\LeftTeeVector",
974
+ "⥛": "\\RightTeeVector",
975
+ "⥜": "\\RightUpTeeVector",
976
+ "⥝": "\\RightDownTeeVector",
977
+ "⥞": "\\DownLeftTeeVector",
978
+ "⥟": "\\DownRightTeeVector",
979
+ "⥠": "\\LeftUpTeeVector",
980
+ "⥡": "\\LeftDownTeeVector",
981
+ "⥢": "\\leftleftharpoons",
982
+ "⥣": "\\upupharpoons",
983
+ "⥤": "\\rightrightharpoons",
984
+ "⥥": "\\downdownharpoons",
985
+ "⥦": "\\leftrightharpoonsup",
986
+ "⥧": "\\leftrightharpoonsdown",
987
+ "⥨": "\\rightleftharpoonsup",
988
+ "⥩": "\\rightleftharpoonsdown",
989
+ "⥪": "\\leftbarharpoon",
990
+ "⥫": "\\barleftharpoon",
991
+ "⥬": "\\rightbarharpoon",
992
+ "⥭": "\\barrightharpoon",
993
+ "⥮": "\\updownharpoons",
994
+ "⥯": "\\downupharpoons",
995
+ "⥰": "\\rightimply",
996
+ "⥱": "\\equalrightarrow",
997
+ "⥲": "\\similarrightarrow",
998
+ "⥳": "\\leftarrowsimilar",
999
+ "⥴": "\\rightarrowsimilar",
1000
+ "⥵": "\\rightarrowapprox",
1001
+ "⥶": "\\ltlarr",
1002
+ "⥷": "\\leftarrowless",
1003
+ "⥸": "\\gtrarr",
1004
+ "⥹": "\\subrarr",
1005
+ "⥺": "\\leftarrowsubset",
1006
+ "⥻": "\\suplarr",
1007
+ "⥼": "\\strictfi",
1008
+ "⥽": "\\strictif",
1009
+ "⥾": "\\upfishtail",
1010
+ "⥿": "\\downfishtail",
1011
+ "⦀": "\\VERT",
1012
+ "⦁": "\\spot",
1013
+ "⦂": "\\typecolon",
1014
+ "⦃": "\\lBrace",
1015
+ "⦄": "\\rBrace",
1016
+ "⦅": "\\Lparen",
1017
+ "⦆": "\\Rparen",
1018
+ "⦇": "\\limg",
1019
+ "⦈": "\\rimg",
1020
+ "⦉": "\\lblot",
1021
+ "⦊": "\\rblot",
1022
+ "⦋": "\\lbrackubar",
1023
+ "⦌": "\\rbrackubar",
1024
+ "⦍": "\\lbrackultick",
1025
+ "⦎": "\\rbracklrtick",
1026
+ "⦏": "\\lbracklltick",
1027
+ "⦐": "\\rbrackurtick",
1028
+ "⦑": "\\langledot",
1029
+ "⦒": "\\rangledot",
1030
+ "⦓": "\\lparenless",
1031
+ "⦔": "\\rparengtr",
1032
+ "⦕": "\\Lparengtr",
1033
+ "⦖": "\\Rparenless",
1034
+ "⦗": "\\lblkbrbrak",
1035
+ "⦘": "\\rblkbrbrak",
1036
+ "⦙": "\\fourvdots",
1037
+ "⦚": "\\vzigzag",
1038
+ "⦛": "\\measuredangleleft",
1039
+ "⦜": "\\rightanglesqr",
1040
+ "⦝": "\\rightanglemdot",
1041
+ "⦞": "\\angles",
1042
+ "⦟": "\\angdnr",
1043
+ "⦠": "\\gtlpar",
1044
+ "⦡": "\\sphericalangleup",
1045
+ "⦢": "\\turnangle",
1046
+ "⦣": "\\revangle",
1047
+ "⦤": "\\angleubar",
1048
+ "⦥": "\\revangleubar",
1049
+ "⦦": "\\wideangledown",
1050
+ "⦧": "\\wideangleup",
1051
+ "⦨": "\\measanglerutone",
1052
+ "⦩": "\\measanglelutonw",
1053
+ "⦪": "\\measanglerdtose",
1054
+ "⦫": "\\measangleldtosw",
1055
+ "⦬": "\\measangleurtone",
1056
+ "⦭": "\\measangleultonw",
1057
+ "⦮": "\\measangledrtose",
1058
+ "⦯": "\\measangledltosw",
1059
+ "⦰": "\\revemptyset",
1060
+ "⦱": "\\emptysetobar",
1061
+ "⦲": "\\emptysetocirc",
1062
+ "⦳": "\\emptysetoarr",
1063
+ "⦴": "\\emptysetoarrl",
1064
+ "⦵": "\\circlehbar",
1065
+ "⦶": "\\circledvert",
1066
+ "⦷": "\\circledparallel",
1067
+ "⦸": "\\circledbslash",
1068
+ "⦹": "\\operp",
1069
+ "⦺": "\\obot",
1070
+ "⦻": "\\olcross",
1071
+ "⦼": "\\odotslashdot",
1072
+ "⦽": "\\uparrowoncircle",
1073
+ "⦾": "\\circledwhitebullet",
1074
+ "⦿": "\\circledbullet",
1075
+ "⧀": "\\circledless",
1076
+ "⧁": "\\circledgtr",
1077
+ "⧂": "\\cirscir",
1078
+ "⧃": "\\cirE",
1079
+ "⧄": "\\boxslash",
1080
+ "⧅": "\\boxbslash",
1081
+ "⧆": "\\boxast",
1082
+ "⧇": "\\boxcircle",
1083
+ "⧈": "\\boxbox",
1084
+ "⧉": "\\boxonbox",
1085
+ "⧊": "\\triangleodot",
1086
+ "⧋": "\\triangleubar",
1087
+ "⧌": "\\triangles",
1088
+ "⧍": "\\triangleserifs",
1089
+ "⧎": "\\rtriltri",
1090
+ "⧏": "\\LeftTriangleBar",
1091
+ "⧐": "\\RightTriangleBar",
1092
+ "⧑": "\\lfbowtie",
1093
+ "⧒": "\\rfbowtie",
1094
+ "⧓": "\\fbowtie",
1095
+ "⧔": "\\lftimes",
1096
+ "⧕": "\\rftimes",
1097
+ "⧖": "\\hourglass",
1098
+ "⧗": "\\blackhourglass",
1099
+ "⧘": "\\lvzigzag",
1100
+ "⧙": "\\rvzigzag",
1101
+ "⧚": "\\Lvzigzag",
1102
+ "⧛": "\\Rvzigzag",
1103
+ "⧜": "\\iinfin",
1104
+ "⧝": "\\tieinfty",
1105
+ "⧞": "\\nvinfty",
1106
+ "⧟": "\\multimapboth",
1107
+ "⧠": "\\laplac",
1108
+ "⧡": "\\lrtriangleeq",
1109
+ "⧢": "\\shuffle",
1110
+ "⧣": "\\eparsl",
1111
+ "⧤": "\\smeparsl",
1112
+ "⧥": "\\eqvparsl",
1113
+ "⧦": "\\gleichstark",
1114
+ "⧧": "\\thermod",
1115
+ "⧨": "\\downtriangleleftblack",
1116
+ "⧩": "\\downtrianglerightblack",
1117
+ "⧪": "\\blackdiamonddownarrow",
1118
+ "⧫": "\\blacklozenge",
1119
+ "⧬": "\\circledownarrow",
1120
+ "⧭": "\\blackcircledownarrow",
1121
+ "⧮": "\\errbarsquare",
1122
+ "⧯": "\\errbarblacksquare",
1123
+ "⧰": "\\errbardiamond",
1124
+ "⧱": "\\errbarblackdiamond",
1125
+ "⧲": "\\errbarcircle",
1126
+ "⧳": "\\errbarblackcircle",
1127
+ "⧴": "\\ruledelayed",
1128
+ "⧵": "\\setminus",
1129
+ "⧶": "\\dsol",
1130
+ "⧷": "\\rsolbar",
1131
+ "⧸": "\\xsol",
1132
+ "⧹": "\\zhide",
1133
+ "⧺": "\\doubleplus",
1134
+ "⧻": "\\tripleplus",
1135
+ "⧼": "\\lcurvyangle",
1136
+ "⧽": "\\rcurvyangle",
1137
+ "⧾": "\\tplus",
1138
+ "⧿": "\\tminus",
1139
+ "⨀": "\\bigodot",
1140
+ "⨁": "\\bigoplus",
1141
+ "⨂": "\\bigotimes",
1142
+ "⨃": "\\bigcupdot",
1143
+ "⨄": "\\biguplus",
1144
+ "⨅": "\\bigsqcap",
1145
+ "⨆": "\\bigsqcup",
1146
+ "⨇": "\\conjquant",
1147
+ "⨈": "\\disjquant",
1148
+ "⨉": "\\varprod",
1149
+ "⨊": "\\modtwosum",
1150
+ "⨋": "\\sumint",
1151
+ "⨌": "\\iiiint",
1152
+ "⨍": "\\intbar",
1153
+ "⨎": "\\intBar",
1154
+ "⨏": "\\fint",
1155
+ "⨐": "\\cirfnint",
1156
+ "⨑": "\\awint",
1157
+ "⨒": "\\rppolint",
1158
+ "⨓": "\\scpolint",
1159
+ "⨔": "\\npolint",
1160
+ "⨕": "\\pointint",
1161
+ "⨖": "\\sqint",
1162
+ "⨗": "\\intlarhk",
1163
+ "⨘": "\\intx",
1164
+ "⨙": "\\intcap",
1165
+ "⨚": "\\intcup",
1166
+ "⨛": "\\upint",
1167
+ "⨜": "\\lowint",
1168
+ "⨝": "\\Join",
1169
+ "⨞": "\\bigtriangleleft",
1170
+ "⨟": "\\zcmp",
1171
+ "⨠": "\\zpipe",
1172
+ "⨡": "\\zproject",
1173
+ "⨢": "\\ringplus",
1174
+ "⨣": "\\plushat",
1175
+ "⨤": "\\simplus",
1176
+ "⨥": "\\plusdot",
1177
+ "⨦": "\\plussim",
1178
+ "⨧": "\\plussubtwo",
1179
+ "⨨": "\\plustrif",
1180
+ "⨩": "\\commaminus",
1181
+ "⨪": "\\minusdot",
1182
+ "⨫": "\\minusfdots",
1183
+ "⨬": "\\minusrdots",
1184
+ "⨭": "\\opluslhrim",
1185
+ "⨮": "\\oplusrhrim",
1186
+ "⨯": "\\vectimes",
1187
+ "⨰": "\\dottimes",
1188
+ "⨱": "\\timesbar",
1189
+ "⨲": "\\btimes",
1190
+ "⨳": "\\smashtimes",
1191
+ "⨴": "\\otimeslhrim",
1192
+ "⨵": "\\otimesrhrim",
1193
+ "⨶": "\\otimeshat",
1194
+ "⨷": "\\Otimes",
1195
+ "⨸": "\\odiv",
1196
+ "⨹": "\\triangleplus",
1197
+ "⨺": "\\triangleminus",
1198
+ "⨻": "\\triangletimes",
1199
+ "⨼": "\\intprod",
1200
+ "⨽": "\\intprodr",
1201
+ "⨾": "\\fcmp",
1202
+ "⨿": "\\amalg",
1203
+ "⩀": "\\capdot",
1204
+ "⩁": "\\uminus",
1205
+ "⩂": "\\barcup",
1206
+ "⩃": "\\barcap",
1207
+ "⩄": "\\capwedge",
1208
+ "⩅": "\\cupvee",
1209
+ "⩆": "\\cupovercap",
1210
+ "⩇": "\\capovercup",
1211
+ "⩈": "\\cupbarcap",
1212
+ "⩉": "\\capbarcup",
1213
+ "⩊": "\\twocups",
1214
+ "⩋": "\\twocaps",
1215
+ "⩌": "\\closedvarcup",
1216
+ "⩍": "\\closedvarcap",
1217
+ "⩎": "\\Sqcap",
1218
+ "⩏": "\\Sqcup",
1219
+ "⩐": "\\closedvarcupsmashprod",
1220
+ "⩑": "\\wedgeodot",
1221
+ "⩒": "\\veeodot",
1222
+ "⩓": "\\Wedge",
1223
+ "⩔": "\\Vee",
1224
+ "⩕": "\\wedgeonwedge",
1225
+ "⩖": "\\veeonvee",
1226
+ "⩗": "\\bigslopedvee",
1227
+ "⩘": "\\bigslopedwedge",
1228
+ "⩙": "\\veeonwedge",
1229
+ "⩚": "\\wedgemidvert",
1230
+ "⩛": "\\veemidvert",
1231
+ "⩜": "\\midbarwedge",
1232
+ "⩝": "\\midbarvee",
1233
+ "⩞": "\\doublebarwedge",
1234
+ "⩟": "\\wedgebar",
1235
+ "⩠": "\\wedgedoublebar",
1236
+ "⩡": "\\varveebar",
1237
+ "⩢": "\\doublebarvee",
1238
+ "⩣": "\\veedoublebar",
1239
+ "⩤": "\\dsub",
1240
+ "⩥": "\\rsub",
1241
+ "⩦": "\\eqdot",
1242
+ "⩧": "\\dotequiv",
1243
+ "⩨": "\\equivVert",
1244
+ "⩩": "\\equivVvert",
1245
+ "⩪": "\\dotsim",
1246
+ "⩫": "\\simrdots",
1247
+ "⩬": "\\simminussim",
1248
+ "⩭": "\\congdot",
1249
+ "⩮": "\\asteq",
1250
+ "⩯": "\\hatapprox",
1251
+ "⩰": "\\approxeqq",
1252
+ "⩱": "\\eqqplus",
1253
+ "⩲": "\\pluseqq",
1254
+ "⩳": "\\eqqsim",
1255
+ "⩴": "\\Coloneqq",
1256
+ "⩵": "\\Equal",
1257
+ "⩶": "\\Same",
1258
+ "⩷": "\\ddotseq",
1259
+ "⩸": "\\equivDD",
1260
+ "⩹": "\\ltcir",
1261
+ "⩺": "\\gtcir",
1262
+ "⩻": "\\ltquest",
1263
+ "⩼": "\\gtquest",
1264
+ "⩽": "\\leqslant",
1265
+ "⩾": "\\geqslant",
1266
+ "⩿": "\\lesdot",
1267
+ "⪀": "\\gesdot",
1268
+ "⪁": "\\lesdoto",
1269
+ "⪂": "\\gesdoto",
1270
+ "⪃": "\\lesdotor",
1271
+ "⪄": "\\gesdotol",
1272
+ "⪅": "\\lessapprox",
1273
+ "⪆": "\\gtrapprox",
1274
+ "⪇": "\\lneq",
1275
+ "⪈": "\\gneq",
1276
+ "⪉": "\\lnapprox",
1277
+ "⪊": "\\gnapprox",
1278
+ "⪋": "\\lesseqqgtr",
1279
+ "⪌": "\\gtreqqless",
1280
+ "⪍": "\\lsime",
1281
+ "⪎": "\\gsime",
1282
+ "⪏": "\\lsimg",
1283
+ "⪐": "\\gsiml",
1284
+ "⪑": "\\lgE",
1285
+ "⪒": "\\glE",
1286
+ "⪓": "\\lesges",
1287
+ "⪔": "\\gesles",
1288
+ "⪕": "\\eqslantless",
1289
+ "⪖": "\\eqslantgtr",
1290
+ "⪗": "\\elsdot",
1291
+ "⪘": "\\egsdot",
1292
+ "⪙": "\\eqqless",
1293
+ "⪚": "\\eqqgtr",
1294
+ "⪛": "\\eqqslantless",
1295
+ "⪜": "\\eqqslantgtr",
1296
+ "⪝": "\\simless",
1297
+ "⪞": "\\simgtr",
1298
+ "⪟": "\\simlE",
1299
+ "⪠": "\\simgE",
1300
+ "⪡": "\\NestedLessLess",
1301
+ "⪢": "\\NestedGreaterGreater",
1302
+ "⪣": "\\partialmeetcontraction",
1303
+ "⪤": "\\glj",
1304
+ "⪥": "\\gla",
1305
+ "⪦": "\\leftslice",
1306
+ "⪧": "\\rightslice",
1307
+ "⪨": "\\lescc",
1308
+ "⪩": "\\gescc",
1309
+ "⪪": "\\smt",
1310
+ "⪫": "\\lat",
1311
+ "⪬": "\\smte",
1312
+ "⪭": "\\late",
1313
+ "⪮": "\\bumpeqq",
1314
+ "⪯": "\\preceq",
1315
+ "⪰": "\\succeq",
1316
+ "⪱": "\\precneq",
1317
+ "⪲": "\\succneq",
1318
+ "⪳": "\\preceqq",
1319
+ "⪴": "\\succeqq",
1320
+ "⪵": "\\precneqq",
1321
+ "⪶": "\\succneqq",
1322
+ "⪷": "\\precapprox",
1323
+ "⪸": "\\succapprox",
1324
+ "⪹": "\\precnapprox",
1325
+ "⪺": "\\succnapprox",
1326
+ "⪻": "\\llcurly",
1327
+ "⪼": "\\ggcurly",
1328
+ "⪽": "\\subsetdot",
1329
+ "⪾": "\\supsetdot",
1330
+ "⪿": "\\subsetplus",
1331
+ "⫀": "\\supsetplus",
1332
+ "⫁": "\\submult",
1333
+ "⫂": "\\supmult",
1334
+ "⫃": "\\subedot",
1335
+ "⫄": "\\supedot",
1336
+ "⫅": "\\subseteqq",
1337
+ "⫆": "\\supseteqq",
1338
+ "⫇": "\\subsim",
1339
+ "⫈": "\\supsim",
1340
+ "⫉": "\\subsetapprox",
1341
+ "⫊": "\\supsetapprox",
1342
+ "⫋": "\\subsetneqq",
1343
+ "⫌": "\\supsetneqq",
1344
+ "⫍": "\\lsqhook",
1345
+ "⫎": "\\rsqhook",
1346
+ "⫏": "\\csub",
1347
+ "⫐": "\\csup",
1348
+ "⫑": "\\csube",
1349
+ "⫒": "\\csupe",
1350
+ "⫓": "\\subsup",
1351
+ "⫔": "\\supsub",
1352
+ "⫕": "\\subsub",
1353
+ "⫖": "\\supsup",
1354
+ "⫗": "\\suphsub",
1355
+ "⫘": "\\supdsub",
1356
+ "⫙": "\\forkv",
1357
+ "⫚": "\\topfork",
1358
+ "⫛": "\\mlcp",
1359
+ "⫝̸": "\\forks",
1360
+ "⫝": "\\forksnot",
1361
+ "⫞": "\\shortlefttack",
1362
+ "⫟": "\\shortdowntack",
1363
+ "⫠": "\\shortuptack",
1364
+ "⫡": "\\perps",
1365
+ "⫢": "\\vDdash",
1366
+ "⫣": "\\dashV",
1367
+ "⫤": "\\Dashv",
1368
+ "⫥": "\\DashV",
1369
+ "⫦": "\\varVdash",
1370
+ "⫧": "\\Barv",
1371
+ "⫨": "\\vBar",
1372
+ "⫩": "\\vBarv",
1373
+ "⫪": "\\Top",
1374
+ "⫫": "\\Bot",
1375
+ "⫬": "\\Not",
1376
+ "⫭": "\\bNot",
1377
+ "⫮": "\\revnmid",
1378
+ "⫯": "\\cirmid",
1379
+ "⫰": "\\midcir",
1380
+ "⫱": "\\topcir",
1381
+ "⫲": "\\nhpar",
1382
+ "⫳": "\\parsim",
1383
+ "⫴": "\\interleave",
1384
+ "⫵": "\\nhVvert",
1385
+ "⫶": "\\threedotcolon",
1386
+ "⫷": "\\lllnest",
1387
+ "⫸": "\\gggnest",
1388
+ "⫹": "\\leqqslant",
1389
+ "⫺": "\\geqqslant",
1390
+ "⫻": "\\trslash",
1391
+ "⫼": "\\biginterleave",
1392
+ "⫽": "\\sslash",
1393
+ "⫾": "\\talloblong",
1394
+ "⫿": "\\bigtalloblong",
1395
+ "⬑": "R?",
1396
+ "⬒": "\\squaretopblack",
1397
+ "⬓": "\\squarebotblack",
1398
+ "⬔": "\\squareurblack",
1399
+ "⬕": "\\squarellblack",
1400
+ "⬖": "\\diamondleftblack",
1401
+ "⬗": "\\diamondrightblack",
1402
+ "⬘": "\\diamondtopblack",
1403
+ "⬙": "\\diamondbotblack",
1404
+ "⬚": "\\dottedsquare",
1405
+ "⬝": "\\vysmblksquare",
1406
+ "⬞": "\\vysmwhtsquare",
1407
+ "⬟": "\\pentagonblack",
1408
+ "⬠": "\\pentagon",
1409
+ "⬡": "\\varhexagon",
1410
+ "⬢": "\\varhexagonblack",
1411
+ "⬣": "\\hexagonblack",
1412
+ "⬤": "\\lgblkcircle",
1413
+ "⬥": "\\mdblkdiamond",
1414
+ "⬦": "\\mdwhtdiamond",
1415
+ "⬧": "\\mdblklozenge",
1416
+ "⬨": "\\mdwhtlozenge",
1417
+ "⬩": "\\smblkdiamond",
1418
+ "⬪": "\\smblklozenge",
1419
+ "⬫": "\\smwhtlozenge",
1420
+ "⬬": "\\blkhorzoval",
1421
+ "⬭": "\\whthorzoval",
1422
+ "⬮": "\\blkvertoval",
1423
+ "⬯": "\\whtvertoval",
1424
+ "⬰": "\\circleonleftarrow",
1425
+ "⬱": "\\leftthreearrows",
1426
+ "⬲": "\\leftarrowonoplus",
1427
+ "⬳": "\\longleftsquigarrow",
1428
+ "⬴": "\\nvtwoheadleftarrow",
1429
+ "⬵": "\\nVtwoheadleftarrow",
1430
+ "⬶": "\\twoheadmapsfrom",
1431
+ "⬷": "\\twoheadleftdbkarrow",
1432
+ "⬸": "\\leftdotarrow",
1433
+ "⬹": "\\nvleftarrowtail",
1434
+ "⬺": "\\nVleftarrowtail",
1435
+ "⬻": "\\twoheadleftarrowtail",
1436
+ "⬼": "\\nvtwoheadleftarrowtail",
1437
+ "⬽": "\\nVtwoheadleftarrowtail",
1438
+ "⬾": "\\leftarrowx",
1439
+ "⬿": "\\leftcurvedarrow",
1440
+ "⭀": "\\equalleftarrow",
1441
+ "⭁": "\\bsimilarleftarrow",
1442
+ "⭂": "\\leftarrowbackapprox",
1443
+ "⭃": "\\rightarrowgtr",
1444
+ "⭄": "\\rightarrowsupset",
1445
+ "⭅": "\\LLeftarrow",
1446
+ "⭆": "\\RRightarrow",
1447
+ "⭇": "\\bsimilarrightarrow",
1448
+ "⭈": "\\rightarrowbackapprox",
1449
+ "⭉": "\\similarleftarrow",
1450
+ "⭊": "\\leftarrowapprox",
1451
+ "⭋": "\\leftarrowbsimilar",
1452
+ "⭌": "\\rightarrowbsimilar",
1453
+ "⭐": "\\medwhitestar",
1454
+ "⭑": "\\medblackstar",
1455
+ "⭒": "\\smwhitestar",
1456
+ "⭓": "\\rightpentagonblack",
1457
+ "⭔": "\\rightpentagon",
1458
+ "〒": "\\postalmark",
1459
+ "〰": "\\hzigzag",
1460
+ "𝐀": "\\mathbf{A}",
1461
+ "𝐁": "\\mathbf{B}",
1462
+ "𝐂": "\\mathbf{C}",
1463
+ "𝐃": "\\mathbf{D}",
1464
+ "𝐄": "\\mathbf{E}",
1465
+ "𝐅": "\\mathbf{F}",
1466
+ "𝐆": "\\mathbf{G}",
1467
+ "𝐇": "\\mathbf{H}",
1468
+ "𝐈": "\\mathbf{I}",
1469
+ "𝐉": "\\mathbf{J}",
1470
+ "𝐊": "\\mathbf{K}",
1471
+ "𝐋": "\\mathbf{L}",
1472
+ "𝐌": "\\mathbf{M}",
1473
+ "𝐍": "\\mathbf{N}",
1474
+ "𝐎": "\\mathbf{O}",
1475
+ "𝐏": "\\mathbf{P}",
1476
+ "𝐐": "\\mathbf{Q}",
1477
+ "𝐑": "\\mathbf{R}",
1478
+ "𝐒": "\\mathbf{S}",
1479
+ "𝐓": "\\mathbf{T}",
1480
+ "𝐔": "\\mathbf{U}",
1481
+ "𝐕": "\\mathbf{V}",
1482
+ "𝐖": "\\mathbf{W}",
1483
+ "𝐗": "\\mathbf{X}",
1484
+ "𝐘": "\\mathbf{Y}",
1485
+ "𝐙": "\\mathbf{Z}",
1486
+ "𝐚": "\\mathbf{a}",
1487
+ "𝐛": "\\mathbf{b}",
1488
+ "𝐜": "\\mathbf{c}",
1489
+ "𝐝": "\\mathbf{d}",
1490
+ "𝐞": "\\mathbf{e}",
1491
+ "𝐟": "\\mathbf{f}",
1492
+ "𝐠": "\\mathbf{g}",
1493
+ "𝐡": "\\mathbf{h}",
1494
+ "𝐢": "\\mathbf{i}",
1495
+ "𝐣": "\\mathbf{j}",
1496
+ "𝐤": "\\mathbf{k}",
1497
+ "𝐥": "\\mathbf{l}",
1498
+ "𝐦": "\\mathbf{m}",
1499
+ "𝐧": "\\mathbf{n}",
1500
+ "𝐨": "\\mathbf{o}",
1501
+ "𝐩": "\\mathbf{p}",
1502
+ "𝐪": "\\mathbf{q}",
1503
+ "𝐫": "\\mathbf{r}",
1504
+ "𝐬": "\\mathbf{s}",
1505
+ "𝐭": "\\mathbf{t}",
1506
+ "𝐮": "\\mathbf{u}",
1507
+ "𝐯": "\\mathbf{v}",
1508
+ "𝐰": "\\mathbf{w}",
1509
+ "𝐱": "\\mathbf{x}",
1510
+ "𝐲": "\\mathbf{y}",
1511
+ "𝐳": "\\mathbf{z}",
1512
+ "𝑨": "\\mathbfit{A}",
1513
+ "𝑩": "\\mathbfit{B}",
1514
+ "𝑪": "\\mathbfit{C}",
1515
+ "𝑫": "\\mathbfit{D}",
1516
+ "𝑬": "\\mathbfit{E}",
1517
+ "𝑭": "\\mathbfit{F}",
1518
+ "𝑮": "\\mathbfit{G}",
1519
+ "𝑯": "\\mathbfit{H}",
1520
+ "𝑰": "\\mathbfit{I}",
1521
+ "𝑱": "\\mathbfit{J}",
1522
+ "𝑲": "\\mathbfit{K}",
1523
+ "𝑳": "\\mathbfit{L}",
1524
+ "𝑴": "\\mathbfit{M}",
1525
+ "𝑵": "\\mathbfit{N}",
1526
+ "𝑶": "\\mathbfit{O}",
1527
+ "𝑷": "\\mathbfit{P}",
1528
+ "𝑸": "\\mathbfit{Q}",
1529
+ "𝑹": "\\mathbfit{R}",
1530
+ "𝑺": "\\mathbfit{S}",
1531
+ "𝑻": "\\mathbfit{T}",
1532
+ "𝑼": "\\mathbfit{U}",
1533
+ "𝑽": "\\mathbfit{V}",
1534
+ "𝑾": "\\mathbfit{W}",
1535
+ "𝑿": "\\mathbfit{X}",
1536
+ "𝒀": "\\mathbfit{Y}",
1537
+ "𝒁": "\\mathbfit{Z}",
1538
+ "𝒂": "\\mathbfit{a}",
1539
+ "𝒃": "\\mathbfit{b}",
1540
+ "𝒄": "\\mathbfit{c}",
1541
+ "𝒅": "\\mathbfit{d}",
1542
+ "𝒆": "\\mathbfit{e}",
1543
+ "𝒇": "\\mathbfit{f}",
1544
+ "𝒈": "\\mathbfit{g}",
1545
+ "𝒉": "\\mathbfit{h}",
1546
+ "𝒊": "\\mathbfit{i}",
1547
+ "𝒋": "\\mathbfit{j}",
1548
+ "𝒌": "\\mathbfit{k}",
1549
+ "𝒍": "\\mathbfit{l}",
1550
+ "𝒎": "\\mathbfit{m}",
1551
+ "𝒏": "\\mathbfit{n}",
1552
+ "𝒐": "\\mathbfit{o}",
1553
+ "𝒑": "\\mathbfit{p}",
1554
+ "𝒒": "\\mathbfit{q}",
1555
+ "𝒓": "\\mathbfit{r}",
1556
+ "𝒔": "\\mathbfit{s}",
1557
+ "𝒕": "\\mathbfit{t}",
1558
+ "𝒖": "\\mathbfit{u}",
1559
+ "𝒗": "\\mathbfit{v}",
1560
+ "𝒘": "\\mathbfit{w}",
1561
+ "𝒙": "\\mathbfit{x}",
1562
+ "𝒚": "\\mathbfit{y}",
1563
+ "𝒛": "\\mathbfit{z}",
1564
+ "𝒜": "\\mathcal{A}",
1565
+ "𝒞": "\\mathcal{C}",
1566
+ "𝒟": "\\mathcal{D}",
1567
+ "𝒢": "\\mathcal{G}",
1568
+ "𝒥": "\\mathcal{J}",
1569
+ "𝒦": "\\mathcal{K}",
1570
+ "𝒩": "\\mathcal{N}",
1571
+ "𝒪": "\\mathcal{O}",
1572
+ "𝒫": "\\mathcal{P}",
1573
+ "𝒬": "\\mathcal{Q}",
1574
+ "𝒮": "\\mathcal{S}",
1575
+ "𝒯": "\\mathcal{T}",
1576
+ "𝒰": "\\mathcal{U}",
1577
+ "𝒱": "\\mathcal{V}",
1578
+ "𝒲": "\\mathcal{W}",
1579
+ "𝒳": "\\mathcal{X}",
1580
+ "𝒴": "\\mathcal{Y}",
1581
+ "𝒵": "\\mathcal{Z}",
1582
+ "𝒶": "\\mathcal{a}",
1583
+ "𝒷": "\\mathcal{b}",
1584
+ "𝒸": "\\mathcal{c}",
1585
+ "𝒹": "\\mathcal{d}",
1586
+ "𝒻": "\\mathcal{f}",
1587
+ "𝒽": "\\mathcal{h}",
1588
+ "𝒾": "\\mathcal{i}",
1589
+ "𝒿": "\\mathcal{j}",
1590
+ "𝓀": "\\mathcal{k}",
1591
+ "𝓁": "\\mathcal{l}",
1592
+ "𝓂": "\\mathcal{m}",
1593
+ "𝓃": "\\mathcal{n}",
1594
+ "𝓅": "\\mathcal{p}",
1595
+ "𝓆": "\\mathcal{q}",
1596
+ "𝓇": "\\mathcal{r}",
1597
+ "𝓈": "\\mathcal{s}",
1598
+ "𝓉": "\\mathcal{t}",
1599
+ "𝓊": "\\mathcal{u}",
1600
+ "𝓋": "\\mathcal{v}",
1601
+ "𝓌": "\\mathcal{w}",
1602
+ "𝓍": "\\mathcal{x}",
1603
+ "𝓎": "\\mathcal{y}",
1604
+ "𝓏": "\\mathcal{z}",
1605
+ "𝓐": "\\mbfscrA",
1606
+ "𝓑": "\\mbfscrB",
1607
+ "𝓒": "\\mbfscrC",
1608
+ "𝓓": "\\mbfscrD",
1609
+ "𝓔": "\\mbfscrE",
1610
+ "𝓕": "\\mbfscrF",
1611
+ "𝓖": "\\mbfscrG",
1612
+ "𝓗": "\\mbfscrH",
1613
+ "𝓘": "\\mbfscrI",
1614
+ "𝓙": "\\mbfscrJ",
1615
+ "𝓚": "\\mbfscrK",
1616
+ "𝓛": "\\mbfscrL",
1617
+ "𝓜": "\\mbfscrM",
1618
+ "𝓝": "\\mbfscrN",
1619
+ "𝓞": "\\mbfscrO",
1620
+ "𝓟": "\\mbfscrP",
1621
+ "𝓠": "\\mbfscrQ",
1622
+ "𝓡": "\\mbfscrR",
1623
+ "𝓢": "\\mbfscrS",
1624
+ "𝓣": "\\mbfscrT",
1625
+ "𝓤": "\\mbfscrU",
1626
+ "𝓥": "\\mbfscrV",
1627
+ "𝓦": "\\mbfscrW",
1628
+ "𝓧": "\\mbfscrX",
1629
+ "𝓨": "\\mbfscrY",
1630
+ "𝓩": "\\mbfscrZ",
1631
+ "𝓪": "\\mbfscra",
1632
+ "𝓫": "\\mbfscrb",
1633
+ "𝓬": "\\mbfscrc",
1634
+ "𝓭": "\\mbfscrd",
1635
+ "𝓮": "\\mbfscre",
1636
+ "𝓯": "\\mbfscrf",
1637
+ "𝓰": "\\mbfscrg",
1638
+ "𝓱": "\\mbfscrh",
1639
+ "𝓲": "\\mbfscri",
1640
+ "𝓳": "\\mbfscrj",
1641
+ "𝓴": "\\mbfscrk",
1642
+ "𝓵": "\\mbfscrl",
1643
+ "𝓶": "\\mbfscrm",
1644
+ "𝓷": "\\mbfscrn",
1645
+ "𝓸": "\\mbfscro",
1646
+ "𝓹": "\\mbfscrp",
1647
+ "𝓺": "\\mbfscrq",
1648
+ "𝓻": "\\mbfscrr",
1649
+ "𝓼": "\\mbfscrs",
1650
+ "𝓽": "\\mbfscrt",
1651
+ "𝓾": "\\mbfscru",
1652
+ "𝓿": "\\mbfscrv",
1653
+ "𝔀": "\\mbfscrw",
1654
+ "𝔁": "\\mbfscrx",
1655
+ "𝔂": "\\mbfscry",
1656
+ "𝔃": "\\mbfscrz",
1657
+ "𝔄": "\\mathfrak{A}",
1658
+ "𝔅": "\\mathfrak{B}",
1659
+ "𝔇": "\\mathfrak{D}",
1660
+ "𝔈": "\\mathfrak{E}",
1661
+ "𝔉": "\\mathfrak{F}",
1662
+ "𝔊": "\\mathfrak{G}",
1663
+ "𝔍": "\\mathfrak{J}",
1664
+ "𝔎": "\\mathfrak{K}",
1665
+ "𝔏": "\\mathfrak{L}",
1666
+ "𝔐": "\\mathfrak{M}",
1667
+ "𝔑": "\\mathfrak{N}",
1668
+ "𝔒": "\\mathfrak{O}",
1669
+ "𝔓": "\\mathfrak{P}",
1670
+ "𝔔": "\\mathfrak{Q}",
1671
+ "𝔖": "\\mathfrak{S}",
1672
+ "𝔗": "\\mathfrak{T}",
1673
+ "𝔘": "\\mathfrak{U}",
1674
+ "𝔙": "\\mathfrak{V}",
1675
+ "𝔚": "\\mathfrak{W}",
1676
+ "𝔛": "\\mathfrak{X}",
1677
+ "𝔜": "\\mathfrak{Y}",
1678
+ "𝔞": "\\mathfrak{a}",
1679
+ "𝔟": "\\mathfrak{b}",
1680
+ "𝔠": "\\mathfrak{c}",
1681
+ "𝔡": "\\mathfrak{d}",
1682
+ "𝔢": "\\mathfrak{e}",
1683
+ "𝔣": "\\mathfrak{f}",
1684
+ "𝔤": "\\mathfrak{g}",
1685
+ "𝔥": "\\mathfrak{h}",
1686
+ "𝔦": "\\mathfrak{i}",
1687
+ "𝔧": "\\mathfrak{j}",
1688
+ "𝔨": "\\mathfrak{k}",
1689
+ "𝔩": "\\mathfrak{l}",
1690
+ "𝔪": "\\mathfrak{m}",
1691
+ "𝔫": "\\mathfrak{n}",
1692
+ "𝔬": "\\mathfrak{o}",
1693
+ "𝔭": "\\mathfrak{p}",
1694
+ "𝔮": "\\mathfrak{q}",
1695
+ "𝔯": "\\mathfrak{r}",
1696
+ "𝔰": "\\mathfrak{s}",
1697
+ "𝔱": "\\mathfrak{t}",
1698
+ "𝔲": "\\mathfrak{u}",
1699
+ "𝔳": "\\mathfrak{v}",
1700
+ "𝔴": "\\mathfrak{w}",
1701
+ "𝔵": "\\mathfrak{x}",
1702
+ "𝔶": "\\mathfrak{y}",
1703
+ "𝔷": "\\mathfrak{z}",
1704
+ "𝔸": "\\mathbb{A}",
1705
+ "𝔹": "\\mathbb{B}",
1706
+ "𝔻": "\\mathbb{D}",
1707
+ "𝔼": "\\mathbb{E}",
1708
+ "𝔽": "\\mathbb{F}",
1709
+ "𝔾": "\\mathbb{G}",
1710
+ "𝕀": "\\mathbb{I}",
1711
+ "𝕁": "\\mathbb{J}",
1712
+ "𝕂": "\\mathbb{K}",
1713
+ "𝕃": "\\mathbb{L}",
1714
+ "𝕄": "\\mathbb{M}",
1715
+ "𝕆": "\\mathbb{O}",
1716
+ "𝕊": "\\mathbb{S}",
1717
+ "𝕋": "\\mathbb{T}",
1718
+ "𝕌": "\\mathbb{U}",
1719
+ "𝕍": "\\mathbb{V}",
1720
+ "𝕎": "\\mathbb{W}",
1721
+ "𝕏": "\\mathbb{X}",
1722
+ "𝕐": "\\mathbb{Y}",
1723
+ "𝕒": "\\mathbb{a}",
1724
+ "𝕓": "\\mathbb{b}",
1725
+ "𝕔": "\\mathbb{c}",
1726
+ "𝕕": "\\mathbb{d}",
1727
+ "𝕖": "\\mathbb{e}",
1728
+ "𝕗": "\\mathbb{f}",
1729
+ "𝕘": "\\mathbb{g}",
1730
+ "𝕙": "\\mathbb{h}",
1731
+ "𝕚": "\\mathbb{i}",
1732
+ "𝕛": "\\mathbb{j}",
1733
+ "𝕜": "\\mathbb{k}",
1734
+ "𝕝": "\\mathbb{l}",
1735
+ "𝕞": "\\mathbb{m}",
1736
+ "𝕟": "\\mathbb{n}",
1737
+ "𝕠": "\\mathbb{o}",
1738
+ "𝕡": "\\mathbb{p}",
1739
+ "𝕢": "\\mathbb{q}",
1740
+ "𝕣": "\\mathbb{r}",
1741
+ "𝕤": "\\mathbb{s}",
1742
+ "𝕥": "\\mathbb{t}",
1743
+ "𝕦": "\\mathbb{u}",
1744
+ "𝕧": "\\mathbb{v}",
1745
+ "𝕨": "\\mathbb{w}",
1746
+ "𝕩": "\\mathbb{x}",
1747
+ "𝕪": "\\mathbb{y}",
1748
+ "𝕫": "\\mathbb{z}",
1749
+ "𝕬": "\\mbffrakA",
1750
+ "𝕭": "\\mbffrakB",
1751
+ "𝕮": "\\mbffrakC",
1752
+ "𝕯": "\\mbffrakD",
1753
+ "𝕰": "\\mbffrakE",
1754
+ "𝕱": "\\mbffrakF",
1755
+ "𝕲": "\\mbffrakG",
1756
+ "𝕳": "\\mbffrakH",
1757
+ "𝕴": "\\mbffrakI",
1758
+ "𝕵": "\\mbffrakJ",
1759
+ "𝕶": "\\mbffrakK",
1760
+ "𝕷": "\\mbffrakL",
1761
+ "𝕸": "\\mbffrakM",
1762
+ "𝕹": "\\mbffrakN",
1763
+ "𝕺": "\\mbffrakO",
1764
+ "𝕻": "\\mbffrakP",
1765
+ "𝕼": "\\mbffrakQ",
1766
+ "𝕽": "\\mbffrakR",
1767
+ "𝕾": "\\mbffrakS",
1768
+ "𝕿": "\\mbffrakT",
1769
+ "𝖀": "\\mbffrakU",
1770
+ "𝖁": "\\mbffrakV",
1771
+ "𝖂": "\\mbffrakW",
1772
+ "𝖃": "\\mbffrakX",
1773
+ "𝖄": "\\mbffrakY",
1774
+ "𝖅": "\\mbffrakZ",
1775
+ "𝖆": "\\mbffraka",
1776
+ "𝖇": "\\mbffrakb",
1777
+ "𝖈": "\\mbffrakc",
1778
+ "𝖉": "\\mbffrakd",
1779
+ "𝖊": "\\mbffrake",
1780
+ "𝖋": "\\mbffrakf",
1781
+ "𝖌": "\\mbffrakg",
1782
+ "𝖍": "\\mbffrakh",
1783
+ "𝖎": "\\mbffraki",
1784
+ "𝖏": "\\mbffrakj",
1785
+ "𝖐": "\\mbffrakk",
1786
+ "𝖑": "\\mbffrakl",
1787
+ "𝖒": "\\mbffrakm",
1788
+ "𝖓": "\\mbffrakn",
1789
+ "𝖔": "\\mbffrako",
1790
+ "𝖕": "\\mbffrakp",
1791
+ "𝖖": "\\mbffrakq",
1792
+ "𝖗": "\\mbffrakr",
1793
+ "𝖘": "\\mbffraks",
1794
+ "𝖙": "\\mbffrakt",
1795
+ "𝖚": "\\mbffraku",
1796
+ "𝖛": "\\mbffrakv",
1797
+ "𝖜": "\\mbffrakw",
1798
+ "𝖝": "\\mbffrakx",
1799
+ "𝖞": "\\mbffraky",
1800
+ "𝖟": "\\mbffrakz",
1801
+ "𝖠": "\\mathsf{A}",
1802
+ "𝖡": "\\mathsf{B}",
1803
+ "𝖢": "\\mathsf{C}",
1804
+ "𝖣": "\\mathsf{D}",
1805
+ "𝖤": "\\mathsf{E}",
1806
+ "𝖥": "\\mathsf{F}",
1807
+ "𝖦": "\\mathsf{G}",
1808
+ "𝖧": "\\mathsf{H}",
1809
+ "𝖨": "\\mathsf{I}",
1810
+ "𝖩": "\\mathsf{J}",
1811
+ "𝖪": "\\mathsf{K}",
1812
+ "𝖫": "\\mathsf{L}",
1813
+ "𝖬": "\\mathsf{M}",
1814
+ "𝖭": "\\mathsf{N}",
1815
+ "𝖮": "\\mathsf{O}",
1816
+ "𝖯": "\\mathsf{P}",
1817
+ "𝖰": "\\mathsf{Q}",
1818
+ "𝖱": "\\mathsf{R}",
1819
+ "𝖲": "\\mathsf{S}",
1820
+ "𝖳": "\\mathsf{T}",
1821
+ "𝖴": "\\mathsf{U}",
1822
+ "𝖵": "\\mathsf{V}",
1823
+ "𝖶": "\\mathsf{W}",
1824
+ "𝖷": "\\mathsf{X}",
1825
+ "𝖸": "\\mathsf{Y}",
1826
+ "𝖹": "\\mathsf{Z}",
1827
+ "𝖺": "\\mathsf{a}",
1828
+ "𝖻": "\\mathsf{b}",
1829
+ "𝖼": "\\mathsf{c}",
1830
+ "𝖽": "\\mathsf{d}",
1831
+ "𝖾": "\\mathsf{e}",
1832
+ "𝖿": "\\mathsf{f}",
1833
+ "𝗀": "\\mathsf{g}",
1834
+ "𝗁": "\\mathsf{h}",
1835
+ "𝗂": "\\mathsf{i}",
1836
+ "𝗃": "\\mathsf{j}",
1837
+ "𝗄": "\\mathsf{k}",
1838
+ "𝗅": "\\mathsf{l}",
1839
+ "𝗆": "\\mathsf{m}",
1840
+ "𝗇": "\\mathsf{n}",
1841
+ "𝗈": "\\mathsf{o}",
1842
+ "𝗉": "\\mathsf{p}",
1843
+ "𝗊": "\\mathsf{q}",
1844
+ "𝗋": "\\mathsf{r}",
1845
+ "𝗌": "\\mathsf{s}",
1846
+ "𝗍": "\\mathsf{t}",
1847
+ "𝗎": "\\mathsf{u}",
1848
+ "𝗏": "\\mathsf{v}",
1849
+ "𝗐": "\\mathsf{w}",
1850
+ "𝗑": "\\mathsf{x}",
1851
+ "𝗒": "\\mathsf{y}",
1852
+ "𝗓": "\\mathsf{z}",
1853
+ "𝗔": "\\mathsfbf{A}",
1854
+ "𝗕": "\\mathsfbf{B}",
1855
+ "𝗖": "\\mathsfbf{C}",
1856
+ "𝗗": "\\mathsfbf{D}",
1857
+ "𝗘": "\\mathsfbf{E}",
1858
+ "𝗙": "\\mathsfbf{F}",
1859
+ "𝗚": "\\mathsfbf{G}",
1860
+ "𝗛": "\\mathsfbf{H}",
1861
+ "𝗜": "\\mathsfbf{I}",
1862
+ "𝗝": "\\mathsfbf{J}",
1863
+ "𝗞": "\\mathsfbf{K}",
1864
+ "𝗟": "\\mathsfbf{L}",
1865
+ "𝗠": "\\mathsfbf{M}",
1866
+ "𝗡": "\\mathsfbf{N}",
1867
+ "𝗢": "\\mathsfbf{O}",
1868
+ "𝗣": "\\mathsfbf{P}",
1869
+ "𝗤": "\\mathsfbf{Q}",
1870
+ "𝗥": "\\mathsfbf{R}",
1871
+ "𝗦": "\\mathsfbf{S}",
1872
+ "𝗧": "\\mathsfbf{T}",
1873
+ "𝗨": "\\mathsfbf{U}",
1874
+ "𝗩": "\\mathsfbf{V}",
1875
+ "𝗪": "\\mathsfbf{W}",
1876
+ "𝗫": "\\mathsfbf{X}",
1877
+ "𝗬": "\\mathsfbf{Y}",
1878
+ "𝗭": "\\mathsfbf{Z}",
1879
+ "𝗮": "\\mathsfbf{a}",
1880
+ "𝗯": "\\mathsfbf{b}",
1881
+ "𝗰": "\\mathsfbf{c}",
1882
+ "𝗱": "\\mathsfbf{d}",
1883
+ "𝗲": "\\mathsfbf{e}",
1884
+ "𝗳": "\\mathsfbf{f}",
1885
+ "𝗴": "\\mathsfbf{g}",
1886
+ "𝗵": "\\mathsfbf{h}",
1887
+ "𝗶": "\\mathsfbf{i}",
1888
+ "𝗷": "\\mathsfbf{j}",
1889
+ "𝗸": "\\mathsfbf{k}",
1890
+ "𝗹": "\\mathsfbf{l}",
1891
+ "𝗺": "\\mathsfbf{m}",
1892
+ "𝗻": "\\mathsfbf{n}",
1893
+ "𝗼": "\\mathsfbf{o}",
1894
+ "𝗽": "\\mathsfbf{p}",
1895
+ "𝗾": "\\mathsfbf{q}",
1896
+ "𝗿": "\\mathsfbf{r}",
1897
+ "𝘀": "\\mathsfbf{s}",
1898
+ "𝘁": "\\mathsfbf{t}",
1899
+ "𝘂": "\\mathsfbf{u}",
1900
+ "𝘃": "\\mathsfbf{v}",
1901
+ "𝘄": "\\mathsfbf{w}",
1902
+ "𝘅": "\\mathsfbf{x}",
1903
+ "𝘆": "\\mathsfbf{y}",
1904
+ "𝘇": "\\mathsfbf{z}",
1905
+ "𝘈": "\\mathsfit{A}",
1906
+ "𝘉": "\\mathsfit{B}",
1907
+ "𝘊": "\\mathsfit{C}",
1908
+ "𝘋": "\\mathsfit{D}",
1909
+ "𝘌": "\\mathsfit{E}",
1910
+ "𝘍": "\\mathsfit{F}",
1911
+ "𝘎": "\\mathsfit{G}",
1912
+ "𝘏": "\\mathsfit{H}",
1913
+ "𝘐": "\\mathsfit{I}",
1914
+ "𝘑": "\\mathsfit{J}",
1915
+ "𝘒": "\\mathsfit{K}",
1916
+ "𝘓": "\\mathsfit{L}",
1917
+ "𝘔": "\\mathsfit{M}",
1918
+ "𝘕": "\\mathsfit{N}",
1919
+ "𝘖": "\\mathsfit{O}",
1920
+ "𝘗": "\\mathsfit{P}",
1921
+ "𝘘": "\\mathsfit{Q}",
1922
+ "𝘙": "\\mathsfit{R}",
1923
+ "𝘚": "\\mathsfit{S}",
1924
+ "𝘛": "\\mathsfit{T}",
1925
+ "𝘜": "\\mathsfit{U}",
1926
+ "𝘝": "\\mathsfit{V}",
1927
+ "𝘞": "\\mathsfit{W}",
1928
+ "𝘟": "\\mathsfit{X}",
1929
+ "𝘠": "\\mathsfit{Y}",
1930
+ "𝘡": "\\mathsfit{Z}",
1931
+ "𝘢": "\\mathsfit{a}",
1932
+ "𝘣": "\\mathsfit{b}",
1933
+ "𝘤": "\\mathsfit{c}",
1934
+ "𝘥": "\\mathsfit{d}",
1935
+ "𝘦": "\\mathsfit{e}",
1936
+ "𝘧": "\\mathsfit{f}",
1937
+ "𝘨": "\\mathsfit{g}",
1938
+ "𝘩": "\\mathsfit{h}",
1939
+ "𝘪": "\\mathsfit{i}",
1940
+ "𝘫": "\\mathsfit{j}",
1941
+ "𝘬": "\\mathsfit{k}",
1942
+ "𝘭": "\\mathsfit{l}",
1943
+ "𝘮": "\\mathsfit{m}",
1944
+ "𝘯": "\\mathsfit{n}",
1945
+ "𝘰": "\\mathsfit{o}",
1946
+ "𝘱": "\\mathsfit{p}",
1947
+ "𝘲": "\\mathsfit{q}",
1948
+ "𝘳": "\\mathsfit{r}",
1949
+ "𝘴": "\\mathsfit{s}",
1950
+ "𝘵": "\\mathsfit{t}",
1951
+ "𝘶": "\\mathsfit{u}",
1952
+ "𝘷": "\\mathsfit{v}",
1953
+ "𝘸": "\\mathsfit{w}",
1954
+ "𝘹": "\\mathsfit{x}",
1955
+ "𝘺": "\\mathsfit{y}",
1956
+ "𝘻": "\\mathsfit{z}",
1957
+ "𝘼": "\\mathsfbfit{A}",
1958
+ "𝘽": "\\mathsfbfit{B}",
1959
+ "𝘾": "\\mathsfbfit{C}",
1960
+ "𝘿": "\\mathsfbfit{D}",
1961
+ "𝙀": "\\mathsfbfit{E}",
1962
+ "𝙁": "\\mathsfbfit{F}",
1963
+ "𝙂": "\\mathsfbfit{G}",
1964
+ "𝙃": "\\mathsfbfit{H}",
1965
+ "𝙄": "\\mathsfbfit{I}",
1966
+ "𝙅": "\\mathsfbfit{J}",
1967
+ "𝙆": "\\mathsfbfit{K}",
1968
+ "𝙇": "\\mathsfbfit{L}",
1969
+ "𝙈": "\\mathsfbfit{M}",
1970
+ "𝙉": "\\mathsfbfit{N}",
1971
+ "𝙊": "\\mathsfbfit{O}",
1972
+ "𝙋": "\\mathsfbfit{P}",
1973
+ "𝙌": "\\mathsfbfit{Q}",
1974
+ "𝙍": "\\mathsfbfit{R}",
1975
+ "𝙎": "\\mathsfbfit{S}",
1976
+ "𝙏": "\\mathsfbfit{T}",
1977
+ "𝙐": "\\mathsfbfit{U}",
1978
+ "𝙑": "\\mathsfbfit{V}",
1979
+ "𝙒": "\\mathsfbfit{W}",
1980
+ "𝙓": "\\mathsfbfit{X}",
1981
+ "𝙔": "\\mathsfbfit{Y}",
1982
+ "𝙕": "\\mathsfbfit{Z}",
1983
+ "𝙖": "\\mathsfbfit{a}",
1984
+ "𝙗": "\\mathsfbfit{b}",
1985
+ "𝙘": "\\mathsfbfit{c}",
1986
+ "𝙙": "\\mathsfbfit{d}",
1987
+ "𝙚": "\\mathsfbfit{e}",
1988
+ "𝙛": "\\mathsfbfit{f}",
1989
+ "𝙜": "\\mathsfbfit{g}",
1990
+ "𝙝": "\\mathsfbfit{h}",
1991
+ "𝙞": "\\mathsfbfit{i}",
1992
+ "𝙟": "\\mathsfbfit{j}",
1993
+ "𝙠": "\\mathsfbfit{k}",
1994
+ "𝙡": "\\mathsfbfit{l}",
1995
+ "𝙢": "\\mathsfbfit{m}",
1996
+ "𝙣": "\\mathsfbfit{n}",
1997
+ "𝙤": "\\mathsfbfit{o}",
1998
+ "𝙥": "\\mathsfbfit{p}",
1999
+ "𝙦": "\\mathsfbfit{q}",
2000
+ "𝙧": "\\mathsfbfit{r}",
2001
+ "𝙨": "\\mathsfbfit{s}",
2002
+ "𝙩": "\\mathsfbfit{t}",
2003
+ "𝙪": "\\mathsfbfit{u}",
2004
+ "𝙫": "\\mathsfbfit{v}",
2005
+ "𝙬": "\\mathsfbfit{w}",
2006
+ "𝙭": "\\mathsfbfit{x}",
2007
+ "𝙮": "\\mathsfbfit{y}",
2008
+ "𝙯": "\\mathsfbfit{z}",
2009
+ "𝙰": "\\mathtt{A}",
2010
+ "𝙱": "\\mathtt{B}",
2011
+ "𝙲": "\\mathtt{C}",
2012
+ "𝙳": "\\mathtt{D}",
2013
+ "𝙴": "\\mathtt{E}",
2014
+ "𝙵": "\\mathtt{F}",
2015
+ "𝙶": "\\mathtt{G}",
2016
+ "𝙷": "\\mathtt{H}",
2017
+ "𝙸": "\\mathtt{I}",
2018
+ "𝙹": "\\mathtt{J}",
2019
+ "𝙺": "\\mathtt{K}",
2020
+ "𝙻": "\\mathtt{L}",
2021
+ "𝙼": "\\mathtt{M}",
2022
+ "𝙽": "\\mathtt{N}",
2023
+ "𝙾": "\\mathtt{O}",
2024
+ "𝙿": "\\mathtt{P}",
2025
+ "𝚀": "\\mathtt{Q}",
2026
+ "𝚁": "\\mathtt{R}",
2027
+ "𝚂": "\\mathtt{S}",
2028
+ "𝚃": "\\mathtt{T}",
2029
+ "𝚄": "\\mathtt{U}",
2030
+ "𝚅": "\\mathtt{V}",
2031
+ "𝚆": "\\mathtt{W}",
2032
+ "𝚇": "\\mathtt{X}",
2033
+ "𝚈": "\\mathtt{Y}",
2034
+ "𝚉": "\\mathtt{Z}",
2035
+ "𝚊": "\\mathtt{a}",
2036
+ "𝚋": "\\mathtt{b}",
2037
+ "𝚌": "\\mathtt{c}",
2038
+ "𝚍": "\\mathtt{d}",
2039
+ "𝚎": "\\mathtt{e}",
2040
+ "𝚏": "\\mathtt{f}",
2041
+ "𝚐": "\\mathtt{g}",
2042
+ "𝚑": "\\mathtt{h}",
2043
+ "𝚒": "\\mathtt{i}",
2044
+ "𝚓": "\\mathtt{j}",
2045
+ "𝚔": "\\mathtt{k}",
2046
+ "𝚕": "\\mathtt{l}",
2047
+ "𝚖": "\\mathtt{m}",
2048
+ "𝚗": "\\mathtt{n}",
2049
+ "𝚘": "\\mathtt{o}",
2050
+ "𝚙": "\\mathtt{p}",
2051
+ "𝚚": "\\mathtt{q}",
2052
+ "𝚛": "\\mathtt{r}",
2053
+ "𝚜": "\\mathtt{s}",
2054
+ "𝚝": "\\mathtt{t}",
2055
+ "𝚞": "\\mathtt{u}",
2056
+ "𝚟": "\\mathtt{v}",
2057
+ "𝚠": "\\mathtt{w}",
2058
+ "𝚡": "\\mathtt{x}",
2059
+ "𝚢": "\\mathtt{y}",
2060
+ "𝚣": "\\mathtt{z}",
2061
+ "𝚨": "\\mbfAlpha",
2062
+ "𝚩": "\\mbfBeta",
2063
+ "𝚪": "\\mathbf{\\Gamma}",
2064
+ "𝚫": "\\mathbf{\\Delta}",
2065
+ "𝚬": "\\mbfEpsilon",
2066
+ "𝚭": "\\mbfZeta",
2067
+ "𝚮": "\\mbfEta",
2068
+ "𝚯": "\\mathbf{\\Theta}",
2069
+ "𝚰": "\\mbfIota",
2070
+ "𝚱": "\\mbfKappa",
2071
+ "𝚲": "\\mathbf{\\Lambda}",
2072
+ "𝚳": "\\mbfMu",
2073
+ "𝚴": "\\mbfNu",
2074
+ "𝚵": "\\mathbf{\\Xi}",
2075
+ "𝚶": "\\mbfOmicron",
2076
+ "𝚷": "\\mathbf{\\Pi}",
2077
+ "𝚸": "\\mbfRho",
2078
+ "𝚹": "\\mbfvarTheta",
2079
+ "𝚺": "\\mathbf{\\Sigma}",
2080
+ "𝚻": "\\mbfTau",
2081
+ "𝚼": "\\mathbf{\\Upsilon}",
2082
+ "𝚽": "\\mathbf{\\Phi}",
2083
+ "𝚾": "\\mbfChi",
2084
+ "𝚿": "\\mathbf{\\Psi}",
2085
+ "𝛀": "\\mathbf{\\Omega}",
2086
+ "𝛁": "\\mbfnabla",
2087
+ "𝛂": "\\mathbf{\\alpha}",
2088
+ "𝛃": "\\mathbf{\\beta}",
2089
+ "𝛄": "\\mathbf{\\gamma}",
2090
+ "𝛅": "\\mathbf{\\delta}",
2091
+ "𝛆": "\\mathbf{\\varepsilon}",
2092
+ "𝛇": "\\mathbf{\\zeta}",
2093
+ "𝛈": "\\mathbf{\\eta}",
2094
+ "𝛉": "\\mathbf{\\theta}",
2095
+ "𝛊": "\\mathbf{\\iota}",
2096
+ "𝛋": "\\mathbf{\\kappa}",
2097
+ "𝛌": "\\mathbf{\\lambda}",
2098
+ "𝛍": "\\mathbf{\\mu}",
2099
+ "𝛎": "\\mathbf{\\nu}",
2100
+ "𝛏": "\\mathbf{\\xi}",
2101
+ "𝛐": "\\mbfomicron",
2102
+ "𝛑": "\\mathbf{\\pi}",
2103
+ "𝛒": "\\mathbf{\\rho}",
2104
+ "𝛓": "\\mathbf{\\varsigma}",
2105
+ "𝛔": "\\mathbf{\\sigma}",
2106
+ "𝛕": "\\mathbf{\\tau}",
2107
+ "𝛖": "\\mathbf{\\upsilon}",
2108
+ "𝛗": "\\mathbf{\\varphi}",
2109
+ "𝛘": "\\mathbf{\\chi}",
2110
+ "𝛙": "\\mathbf{\\psi}",
2111
+ "𝛚": "\\mathbf{\\omega}",
2112
+ "𝛛": "\\mbfpartial",
2113
+ "𝛜": "\\mathbf{\\epsilon}",
2114
+ "𝛝": "\\mathbf{\\vartheta}",
2115
+ "𝛞": "\\mbfvarkappa",
2116
+ "𝛟": "\\mathbf{\\phi}",
2117
+ "𝛠": "\\mathbf{\\varrho}",
2118
+ "𝛡": "\\mathbf{\\varpi}",
2119
+ "𝛢": "\\mitAlpha",
2120
+ "𝛣": "\\mitBeta",
2121
+ "𝛦": "\\mitEpsilon",
2122
+ "𝛧": "\\mitZeta",
2123
+ "𝛨": "\\mitEta",
2124
+ "𝛪": "\\mitIota",
2125
+ "𝛫": "\\mitKappa",
2126
+ "𝛭": "\\mitMu",
2127
+ "𝛮": "\\mitNu",
2128
+ "𝛰": "\\mitOmicron",
2129
+ "𝛲": "\\mitRho",
2130
+ "𝛳": "\\mitvarTheta",
2131
+ "𝛵": "\\mitTau",
2132
+ "𝛸": "\\mitChi",
2133
+ "𝛻": "\\mitnabla",
2134
+ "𝜊": "\\mitomicron",
2135
+ "𝜜": "\\mbfitAlpha",
2136
+ "𝜝": "\\mbfitBeta",
2137
+ "𝜞": "\\mathbfit{\\Gamma}",
2138
+ "𝜟": "\\mathbfit{\\Delta}",
2139
+ "𝜠": "\\mbfitEpsilon",
2140
+ "𝜡": "\\mbfitZeta",
2141
+ "𝜢": "\\mbfitEta",
2142
+ "𝜣": "\\mathbfit{\\Theta}",
2143
+ "𝜤": "\\mbfitIota",
2144
+ "𝜥": "\\mbfitKappa",
2145
+ "𝜦": "\\mathbfit{\\Lambda}",
2146
+ "𝜧": "\\mbfitMu",
2147
+ "𝜨": "\\mbfitNu",
2148
+ "𝜩": "\\mathbfit{\\Xi}",
2149
+ "𝜪": "\\mbfitOmicron",
2150
+ "𝜫": "\\mathbfit{\\Pi}",
2151
+ "𝜬": "\\mbfitRho",
2152
+ "𝜭": "\\mbfitvarTheta",
2153
+ "𝜮": "\\mathbfit{\\Sigma}",
2154
+ "𝜯": "\\mbfitTau",
2155
+ "𝜰": "\\mathbfit{\\Upsilon}",
2156
+ "𝜱": "\\mathbfit{\\Phi}",
2157
+ "𝜲": "\\mbfitChi",
2158
+ "𝜳": "\\mathbfit{\\Psi}",
2159
+ "𝜴": "\\mathbfit{\\Omega}",
2160
+ "𝜵": "\\mbfitnabla",
2161
+ "𝜶": "\\mathbfit{\\alpha}",
2162
+ "𝜷": "\\mathbfit{\\beta}",
2163
+ "𝜸": "\\mathbfit{\\gamma}",
2164
+ "𝜹": "\\mathbfit{\\delta}",
2165
+ "𝜺": "\\mathbfit{\\varepsilon}",
2166
+ "𝜻": "\\mathbfit{\\zeta}",
2167
+ "𝜼": "\\mathbfit{\\eta}",
2168
+ "𝜽": "\\mathbfit{\\theta}",
2169
+ "𝜾": "\\mathbfit{\\iota}",
2170
+ "𝜿": "\\mathbfit{\\kappa}",
2171
+ "𝝀": "\\mathbfit{\\lambda}",
2172
+ "𝝁": "\\mathbfit{\\mu}",
2173
+ "𝝂": "\\mathbfit{\\nu}",
2174
+ "𝝃": "\\mathbfit{\\xi}",
2175
+ "𝝄": "\\mbfitomicron",
2176
+ "𝝅": "\\mathbfit{\\pi}",
2177
+ "𝝆": "\\mathbfit{\\rho}",
2178
+ "𝝇": "\\mathbfit{\\varsigma}",
2179
+ "𝝈": "\\mathbfit{\\sigma}",
2180
+ "𝝉": "\\mathbfit{\\tau}",
2181
+ "𝝊": "\\mathbfit{\\upsilon}",
2182
+ "𝝋": "\\mathbfit{\\varphi}",
2183
+ "𝝌": "\\mathbfit{\\chi}",
2184
+ "𝝍": "\\mathbfit{\\psi}",
2185
+ "𝝎": "\\mathbfit{\\omega}",
2186
+ "𝝏": "\\mbfitpartial",
2187
+ "𝝐": "\\mathbfit{\\epsilon}",
2188
+ "𝝑": "\\mathbfit{\\vartheta}",
2189
+ "𝝒": "\\mbfitvarkappa",
2190
+ "𝝓": "\\mathbfit{\\phi}",
2191
+ "𝝔": "\\mathbfit{\\varrho}",
2192
+ "𝝕": "\\mathbfit{\\varpi}",
2193
+ "𝝖": "\\mbfsansAlpha",
2194
+ "𝝗": "\\mbfsansBeta",
2195
+ "𝝘": "\\mathsfbf{\\Gamma}",
2196
+ "𝝙": "\\mathsfbf{\\Delta}",
2197
+ "𝝚": "\\mbfsansEpsilon",
2198
+ "𝝛": "\\mbfsansZeta",
2199
+ "𝝜": "\\mbfsansEta",
2200
+ "𝝝": "\\mathsfbf{\\Theta}",
2201
+ "𝝞": "\\mbfsansIota",
2202
+ "𝝟": "\\mbfsansKappa",
2203
+ "𝝠": "\\mathsfbf{\\Lambda}",
2204
+ "𝝡": "\\mbfsansMu",
2205
+ "𝝢": "\\mbfsansNu",
2206
+ "𝝣": "\\mathsfbf{\\Xi}",
2207
+ "𝝤": "\\mbfsansOmicron",
2208
+ "𝝥": "\\mathsfbf{\\Pi}",
2209
+ "𝝦": "\\mbfsansRho",
2210
+ "𝝧": "\\mbfsansvarTheta",
2211
+ "𝝨": "\\mathsfbf{\\Sigma}",
2212
+ "𝝩": "\\mbfsansTau",
2213
+ "𝝪": "\\mathsfbf{\\Upsilon}",
2214
+ "𝝫": "\\mathsfbf{\\Phi}",
2215
+ "𝝬": "\\mbfsansChi",
2216
+ "𝝭": "\\mathsfbf{\\Psi}",
2217
+ "𝝮": "\\mathsfbf{\\Omega}",
2218
+ "𝝯": "\\mbfsansnabla",
2219
+ "𝝰": "\\mathsfbf{\\alpha}",
2220
+ "𝝱": "\\mathsfbf{\\beta}",
2221
+ "𝝲": "\\mathsfbf{\\gamma}",
2222
+ "𝝳": "\\mathsfbf{\\delta}",
2223
+ "𝝴": "\\mathsfbf{\\varepsilon}",
2224
+ "𝝵": "\\mathsfbf{\\zeta}",
2225
+ "𝝶": "\\mathsfbf{\\eta}",
2226
+ "𝝷": "\\mathsfbf{\\theta}",
2227
+ "𝝸": "\\mathsfbf{\\iota}",
2228
+ "𝝹": "\\mathsfbf{\\kappa}",
2229
+ "𝝺": "\\mathsfbf{\\lambda}",
2230
+ "𝝻": "\\mathsfbf{\\mu}",
2231
+ "𝝼": "\\mathsfbf{\\nu}",
2232
+ "𝝽": "\\mathsfbf{\\xi}",
2233
+ "𝝾": "\\mbfsansomicron",
2234
+ "𝝿": "\\mathsfbf{\\pi}",
2235
+ "𝞀": "\\mathsfbf{\\rho}",
2236
+ "𝞁": "\\mathsfbf{\\varsigma}",
2237
+ "𝞂": "\\mathsfbf{\\sigma}",
2238
+ "𝞃": "\\mathsfbf{\\tau}",
2239
+ "𝞄": "\\mathsfbf{\\upsilon}",
2240
+ "𝞅": "\\mathsfbf{\\varphi}",
2241
+ "𝞆": "\\mathsfbf{\\chi}",
2242
+ "𝞇": "\\mathsfbf{\\psi}",
2243
+ "𝞈": "\\mathsfbf{\\omega}",
2244
+ "𝞉": "\\mbfsanspartial",
2245
+ "𝞊": "\\mathsfbf{\\epsilon}",
2246
+ "𝞋": "\\mathsfbf{\\vartheta}",
2247
+ "𝞌": "\\mbfsansvarkappa",
2248
+ "𝞍": "\\mathsfbf{\\phi}",
2249
+ "𝞎": "\\mathsfbf{\\varrho}",
2250
+ "𝞏": "\\mathsfbf{\\varpi}",
2251
+ "𝞐": "\\mbfitsansAlpha",
2252
+ "𝞑": "\\mbfitsansBeta",
2253
+ "𝞒": "\\mathsfbfit{\\Gamma}",
2254
+ "𝞓": "\\mathsfbfit{\\Delta}",
2255
+ "𝞔": "\\mbfitsansEpsilon",
2256
+ "𝞕": "\\mbfitsansZeta",
2257
+ "𝞖": "\\mbfitsansEta",
2258
+ "𝞗": "\\mathsfbfit{\\Theta}",
2259
+ "𝞘": "\\mbfitsansIota",
2260
+ "𝞙": "\\mbfitsansKappa",
2261
+ "𝞚": "\\mathsfbfit{\\Lambda}",
2262
+ "𝞛": "\\mbfitsansMu",
2263
+ "𝞜": "\\mbfitsansNu",
2264
+ "𝞝": "\\mathsfbfit{\\Xi}",
2265
+ "𝞞": "\\mbfitsansOmicron",
2266
+ "𝞟": "\\mathsfbfit{\\Pi}",
2267
+ "𝞠": "\\mbfitsansRho",
2268
+ "𝞡": "\\mbfitsansvarTheta",
2269
+ "𝞢": "\\mathsfbfit{\\Sigma}",
2270
+ "𝞣": "\\mbfitsansTau",
2271
+ "𝞤": "\\mathsfbfit{\\Upsilon}",
2272
+ "𝞥": "\\mathsfbfit{\\Phi}",
2273
+ "𝞦": "\\mbfitsansChi",
2274
+ "𝞧": "\\mathsfbfit{\\Psi}",
2275
+ "𝞨": "\\mathsfbfit{\\Omega}",
2276
+ "𝞩": "\\mbfitsansnabla",
2277
+ "𝞪": "\\mathsfbfit{\\alpha}",
2278
+ "𝞫": "\\mathsfbfit{\\beta}",
2279
+ "𝞬": "\\mathsfbfit{\\gamma}",
2280
+ "𝞭": "\\mathsfbfit{\\delta}",
2281
+ "𝞮": "\\mathsfbfit{\\varepsilon}",
2282
+ "𝞯": "\\mathsfbfit{\\zeta}",
2283
+ "𝞰": "\\mathsfbfit{\\eta}",
2284
+ "𝞱": "\\mathsfbfit{\\theta}",
2285
+ "𝞲": "\\mathsfbfit{\\iota}",
2286
+ "𝞳": "\\mathsfbfit{\\kappa}",
2287
+ "𝞴": "\\mathsfbfit{\\lambda}",
2288
+ "𝞵": "\\mathsfbfit{\\mu}",
2289
+ "𝞶": "\\mathsfbfit{\\nu}",
2290
+ "𝞷": "\\mathsfbfit{\\xi}",
2291
+ "𝞸": "\\mbfitsansomicron",
2292
+ "𝞹": "\\mathsfbfit{\\pi}",
2293
+ "𝞺": "\\mathsfbfit{\\rho}",
2294
+ "𝞻": "\\mathsfbfit{\\varsigma}",
2295
+ "𝞼": "\\mathsfbfit{\\sigma}",
2296
+ "𝞽": "\\mathsfbfit{\\tau}",
2297
+ "𝞾": "\\mathsfbfit{\\upsilon}",
2298
+ "𝞿": "\\mathsfbfit{\\varphi}",
2299
+ "𝟀": "\\mathsfbfit{\\chi}",
2300
+ "𝟁": "\\mathsfbfit{\\psi}",
2301
+ "𝟂": "\\mathsfbfit{\\omega}",
2302
+ "𝟃": "\\mbfitsanspartial",
2303
+ "𝟄": "\\mathsfbfit{\\epsilon}",
2304
+ "𝟅": "\\mathsfbfit{\\vartheta}",
2305
+ "𝟆": "\\mbfitsansvarkappa",
2306
+ "𝟇": "\\mathsfbfit{\\phi}",
2307
+ "𝟈": "\\mathsfbfit{\\varrho}",
2308
+ "𝟉": "\\mathsfbfit{\\varpi}",
2309
+ "𝟊": "\\mbfDigamma",
2310
+ "𝟋": "\\mbfdigamma",
2311
+ "𝟎": "\\mathbf{0}",
2312
+ "𝟏": "\\mathbf{1}",
2313
+ "𝟐": "\\mathbf{2}",
2314
+ "𝟑": "\\mathbf{3}",
2315
+ "𝟒": "\\mathbf{4}",
2316
+ "𝟓": "\\mathbf{5}",
2317
+ "𝟔": "\\mathbf{6}",
2318
+ "𝟕": "\\mathbf{7}",
2319
+ "𝟖": "\\mathbf{8}",
2320
+ "𝟗": "\\mathbf{9}",
2321
+ "𝟘": "\\mathbb{0}",
2322
+ "𝟙": "\\mathbb{1}",
2323
+ "𝟚": "\\mathbb{2}",
2324
+ "𝟛": "\\mathbb{3}",
2325
+ "𝟜": "\\mathbb{4}",
2326
+ "𝟝": "\\mathbb{5}",
2327
+ "𝟞": "\\mathbb{6}",
2328
+ "𝟟": "\\mathbb{7}",
2329
+ "𝟠": "\\mathbb{8}",
2330
+ "𝟡": "\\mathbb{9}",
2331
+ "𝟢": "\\mathsf{0}",
2332
+ "𝟣": "\\mathsf{1}",
2333
+ "𝟤": "\\mathsf{2}",
2334
+ "𝟥": "\\mathsf{3}",
2335
+ "𝟦": "\\mathsf{4}",
2336
+ "𝟧": "\\mathsf{5}",
2337
+ "𝟨": "\\mathsf{6}",
2338
+ "𝟩": "\\mathsf{7}",
2339
+ "𝟪": "\\mathsf{8}",
2340
+ "𝟫": "\\mathsf{9}",
2341
+ "𝟬": "\\mathsfbf{0}",
2342
+ "𝟭": "\\mathsfbf{1}",
2343
+ "𝟮": "\\mathsfbf{2}",
2344
+ "𝟯": "\\mathsfbf{3}",
2345
+ "𝟰": "\\mathsfbf{4}",
2346
+ "𝟱": "\\mathsfbf{5}",
2347
+ "𝟲": "\\mathsfbf{6}",
2348
+ "𝟳": "\\mathsfbf{7}",
2349
+ "𝟴": "\\mathsfbf{8}",
2350
+ "𝟵": "\\mathsfbf{9}",
2351
+ "𝟶": "\\mathtt{0}",
2352
+ "𝟷": "\\mathtt{1}",
2353
+ "𝟸": "\\mathtt{2}",
2354
+ "𝟹": "\\mathtt{3}",
2355
+ "𝟺": "\\mathtt{4}",
2356
+ "𝟻": "\\mathtt{5}",
2357
+ "𝟼": "\\mathtt{6}",
2358
+ "𝟽": "\\mathtt{7}",
2359
+ "𝟾": "\\mathtt{8}",
2360
+ "𝟿": "\\mathtt{9}",
2361
+ "⁰": "^0",
2362
+ "¹": "^1",
2363
+ "²": "^2",
2364
+ "³": "^3",
2365
+ "⁴": "^4",
2366
+ "⁵": "^5",
2367
+ "⁶": "^6",
2368
+ "⁷": "^7",
2369
+ "⁸": "^8",
2370
+ "⁹": "^9",
2371
+ "⁺": "^+",
2372
+ "⁻": "^-",
2373
+ "⁼": "^=",
2374
+ "⁽": "^(",
2375
+ "⁾": "^)",
2376
+ "₀": "_0",
2377
+ "₁": "_1",
2378
+ "₂": "_2",
2379
+ "₃": "_3",
2380
+ "₄": "_4",
2381
+ "₅": "_5",
2382
+ "₆": "_6",
2383
+ "₇": "_7",
2384
+ "₈": "_8",
2385
+ "₉": "_9",
2386
+ "₊": "_+",
2387
+ "₋": "_-",
2388
+ "₌": "_=",
2389
+ "₍": "_(",
2390
+ "₎": "_)",
2391
+ "½": "\\frac{1}{2}",
2392
+ "¼": "\\frac{1}{4}",
2393
+ "¾": "\\frac{3}{4}",
2394
+ "Α": "\\Alpha",
2395
+ "Β": "\\Beta",
2396
+ "Γ": "\\Gamma",
2397
+ "Δ": "\\Delta",
2398
+ "Ε": "\\Epsilon",
2399
+ "Ζ": "\\Zeta",
2400
+ "Η": "\\Eta",
2401
+ "Θ": "\\Theta",
2402
+ "Ι": "\\Iota",
2403
+ "Κ": "\\Kappa",
2404
+ "Λ": "\\Lambda",
2405
+ "Μ": "\\upMu",
2406
+ "Ν": "\\upNu",
2407
+ "Ξ": "\\Xi",
2408
+ "Ο": "\\upOmicron",
2409
+ "Π": "\\Pi",
2410
+ "Ρ": "\\Rho",
2411
+ "Σ": "\\Sigma",
2412
+ "Τ": "\\Tau",
2413
+ "Υ": "\\Upsilon",
2414
+ "Φ": "\\Phi",
2415
+ "Χ": "\\Chi",
2416
+ "Ψ": "\\Psi",
2417
+ "Ω": "\\Omega",
2418
+ "α": "\\alpha",
2419
+ "β": "\\beta",
2420
+ "γ": "\\gamma",
2421
+ "δ": "\\delta",
2422
+ "ε": "\\upepsilon",
2423
+ "ζ": "\\zeta",
2424
+ "η": "\\eta",
2425
+ "θ": "\\theta",
2426
+ "ι": "\\iota",
2427
+ "κ": "\\kappa",
2428
+ "λ": "\\lambda",
2429
+ "μ": "\\mu",
2430
+ "ν": "\\nu",
2431
+ "ξ": "\\xi",
2432
+ "ο": "\\upomicron",
2433
+ "π": "\\pi",
2434
+ "ρ": "\\rho",
2435
+ "ς": "\\varsigma",
2436
+ "σ": "\\sigma",
2437
+ "τ": "\\tau",
2438
+ "υ": "\\upsilon",
2439
+ "φ": "\\varphi",
2440
+ "χ": "\\chi",
2441
+ "ψ": "\\psi",
2442
+ "ω": "\\omega",
2443
+ "ϐ": "\\upvarbeta",
2444
+ "ϑ": "\\vartheta",
2445
+ "ϕ": "\\phi",
2446
+ "ϖ": "\\varpi",
2447
+ "Ϙ": "\\upoldKoppa",
2448
+ "ϙ": "\\upoldkoppa",
2449
+ "Ϛ": "\\Stigma",
2450
+ "ϛ": "\\upstigma",
2451
+ "Ϝ": "\\Digamma",
2452
+ "ϝ": "\\digamma",
2453
+ "Ϟ": "\\Koppa",
2454
+ "ϟ": "\\upkoppa",
2455
+ "Ϡ": "\\Sampi",
2456
+ "ϡ": "\\upsampi",
2457
+ "ϰ": "\\varkappa",
2458
+ "ϱ": "\\varrho",
2459
+ "ϴ": "\\textTheta",
2460
+ "ϵ": "\\epsilon",
2461
+ "ε": "\\varepsilon",
2462
+ "϶": "\\backepsilon",
2463
+ "↹": "\\barleftarrowrightarrowba",
2464
+ }
2465
+
2466
+ def unicode2latex(text)
2467
+ SYMBOLS.each do |k, v|
2468
+ text.gsub!(k.to_s, v)
2469
+ end
2470
+ text
2471
+ end
2472
+ end
2473
+ end