tex2typst 0.3.27-beta.1 → 0.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.ts +22 -24
- package/dist/index.js +509 -417
- package/dist/parser.js +23 -0
- package/dist/tex2typst.min.js +13 -13
- package/package.json +1 -1
- package/src/convert.ts +112 -8
- package/src/exposed-types.ts +22 -24
- package/src/generic.ts +16 -0
- package/src/index.ts +7 -4
- package/src/jslex.ts +1 -1
- package/src/map.ts +1 -1
- package/src/tex-parser.ts +128 -107
- package/src/tex-tokenizer.ts +6 -0
- package/src/tex2typst.ts +2 -4
- package/src/typst-parser.ts +9 -10
- package/src/typst-types.ts +484 -230
- package/src/typst-writer.ts +28 -274
- package/tests/cheat-sheet.test.ts +42 -0
- package/tests/cheat-sheet.toml +304 -0
- package/tests/example.ts +15 -0
- package/tests/general-symbols.test.ts +22 -0
- package/tests/general-symbols.toml +755 -0
- package/tests/integration-tex2typst.yaml +89 -0
- package/tests/struct-bidirection.yaml +188 -0
- package/tests/struct-tex2typst.yaml +463 -0
- package/tests/struct-typst2tex.yaml +412 -0
- package/tests/symbol.yml +126 -0
- package/tests/test-common.ts +26 -0
- package/tests/tex-parser.test.ts +97 -0
- package/tests/tex-to-typst.test.ts +136 -0
- package/tests/typst-parser.test.ts +134 -0
- package/tests/typst-to-tex.test.ts +76 -0
- package/tsconfig.json +4 -4
|
@@ -0,0 +1,755 @@
|
|
|
1
|
+
# The following are from Typst documentation website
|
|
2
|
+
# https://typst.app/docs/reference/symbols/sym/
|
|
3
|
+
# This file was auto-generated by the script
|
|
4
|
+
[symbols_in_official_doc]
|
|
5
|
+
lparen = "paren.l"
|
|
6
|
+
lParen = "paren.l.double"
|
|
7
|
+
rparen = "paren.r"
|
|
8
|
+
rParen = "paren.r.double"
|
|
9
|
+
overparen = "paren.t"
|
|
10
|
+
underparen = "paren.b"
|
|
11
|
+
lbrace = "brace.l"
|
|
12
|
+
lBrace = "brace.l.double"
|
|
13
|
+
rbrace = "brace.r"
|
|
14
|
+
rBrace = "brace.r.double"
|
|
15
|
+
# overbrace = "brace.t"
|
|
16
|
+
# underbrace = "brace.b"
|
|
17
|
+
lbrack = "bracket.l"
|
|
18
|
+
lBrack = "bracket.l.double"
|
|
19
|
+
rbrack = "bracket.r"
|
|
20
|
+
rBrack = "bracket.r.double"
|
|
21
|
+
overbracket = "bracket.t"
|
|
22
|
+
underbracket = "bracket.b"
|
|
23
|
+
lbrbrak = "shell.l"
|
|
24
|
+
Lbrbrak = "shell.l.double"
|
|
25
|
+
rbrbrak = "shell.r"
|
|
26
|
+
Rbrbrak = "shell.r.double"
|
|
27
|
+
obrbrak = "shell.t"
|
|
28
|
+
ubrbrak = "shell.b"
|
|
29
|
+
vert = "bar.v"
|
|
30
|
+
Vert = "bar.v.double"
|
|
31
|
+
Vvert = "bar.v.triple"
|
|
32
|
+
circledvert = "bar.v.circle"
|
|
33
|
+
horizbar = "bar.h"
|
|
34
|
+
lvzigzag = "fence.l"
|
|
35
|
+
Lvzigzag = "fence.l.double"
|
|
36
|
+
rvzigzag = "fence.r"
|
|
37
|
+
Rvzigzag = "fence.r.double"
|
|
38
|
+
fourvdots = "fence.dotted"
|
|
39
|
+
angle = "angle"
|
|
40
|
+
langle = "angle.l"
|
|
41
|
+
lcurvyangle = "angle.l.curly"
|
|
42
|
+
langledot = "angle.l.dot"
|
|
43
|
+
rangle = "angle.r"
|
|
44
|
+
rcurvyangle = "angle.r.curly"
|
|
45
|
+
rangledot = "angle.r.dot"
|
|
46
|
+
angdnr = "angle.acute"
|
|
47
|
+
measuredangle = "angle.arc"
|
|
48
|
+
measuredangleleft = "angle.arc.rev"
|
|
49
|
+
wideangledown = "angle.oblique"
|
|
50
|
+
revangle = "angle.rev"
|
|
51
|
+
rightangle = "angle.right"
|
|
52
|
+
measuredrightangle = "angle.right.arc"
|
|
53
|
+
rightanglemdot = "angle.right.dot"
|
|
54
|
+
rightanglesqr = "angle.right.sq"
|
|
55
|
+
angles = "angle.s"
|
|
56
|
+
threedangle = "angle.spatial"
|
|
57
|
+
sphericalangle = "angle.spheric"
|
|
58
|
+
gtlpar = "angle.spheric.rev"
|
|
59
|
+
sphericalangleup = "angle.spheric.top"
|
|
60
|
+
lceil = "ceil.l"
|
|
61
|
+
rceil = "ceil.r"
|
|
62
|
+
lfloor = "floor.l"
|
|
63
|
+
rfloor = "floor.r"
|
|
64
|
+
mathampersand = "amp"
|
|
65
|
+
upand = "amp.inv"
|
|
66
|
+
ast = "ast.op"
|
|
67
|
+
circledast = "ast.circle"
|
|
68
|
+
boxast = "ast.square"
|
|
69
|
+
mathatsign = "at"
|
|
70
|
+
backslash = "backslash"
|
|
71
|
+
obslash = "backslash.circle"
|
|
72
|
+
rsolbar = "backslash.not"
|
|
73
|
+
mathcolon = "colon"
|
|
74
|
+
Colon = "colon.double"
|
|
75
|
+
coloneq = "colon.eq"
|
|
76
|
+
Coloneq = "colon.double.eq"
|
|
77
|
+
mathcomma = "comma"
|
|
78
|
+
dagger = "dagger"
|
|
79
|
+
ddagger = "dagger.double"
|
|
80
|
+
dashcolon = "dash.colon"
|
|
81
|
+
circleddash = "dash.circle"
|
|
82
|
+
hzigzag = "dash.wave.double"
|
|
83
|
+
cdot = "dot.op"
|
|
84
|
+
mathperiod = "dot.basic"
|
|
85
|
+
cdotp = "dot.c"
|
|
86
|
+
odot = "dot.circle"
|
|
87
|
+
bigodot = "dot.circle.big"
|
|
88
|
+
boxdot = "dot.square"
|
|
89
|
+
dddot = "dot.triple"
|
|
90
|
+
ddddot = "dot.quad"
|
|
91
|
+
mathexclam = "excl"
|
|
92
|
+
Exclam = "excl.double"
|
|
93
|
+
mathquestion = "quest"
|
|
94
|
+
Question = "quest.double"
|
|
95
|
+
mathoctothorpe = "hash"
|
|
96
|
+
# mathhyphen = "hyph" # \mathhyphen is not defined in standard amsmath package
|
|
97
|
+
mathpercent = "percent"
|
|
98
|
+
mathparagraph = "pilcrow"
|
|
99
|
+
mathsection = "section"
|
|
100
|
+
mathsemicolon = "semi"
|
|
101
|
+
mathslash = "slash"
|
|
102
|
+
sslash = "slash.double"
|
|
103
|
+
trslash = "slash.triple"
|
|
104
|
+
xsol = "slash.big"
|
|
105
|
+
unicodecdots = "dots.h.c"
|
|
106
|
+
unicodeellipsis = "dots.h"
|
|
107
|
+
vdots = "dots.v"
|
|
108
|
+
ddots = "dots.down"
|
|
109
|
+
adots = "dots.up"
|
|
110
|
+
sim = "tilde.op"
|
|
111
|
+
dotsim = "tilde.dot"
|
|
112
|
+
sime = "tilde.eq"
|
|
113
|
+
nsimeq = "tilde.eq.not"
|
|
114
|
+
backsimeq = "tilde.eq.rev"
|
|
115
|
+
cong = "tilde.equiv"
|
|
116
|
+
ncong = "tilde.equiv.not"
|
|
117
|
+
simneqq = "tilde.nequiv"
|
|
118
|
+
nsim = "tilde.not"
|
|
119
|
+
backsim = "tilde.rev"
|
|
120
|
+
backcong = "tilde.rev.equiv"
|
|
121
|
+
approxident = "tilde.triple"
|
|
122
|
+
caretinsert = "caret"
|
|
123
|
+
prime = "prime"
|
|
124
|
+
backprime = "prime.rev"
|
|
125
|
+
dprime = "prime.double"
|
|
126
|
+
backdprime = "prime.double.rev"
|
|
127
|
+
trprime = "prime.triple"
|
|
128
|
+
backtrprime = "prime.triple.rev"
|
|
129
|
+
qprime = "prime.quad"
|
|
130
|
+
mathplus = "plus"
|
|
131
|
+
oplus = "plus.circle"
|
|
132
|
+
rightarrowonoplus = "plus.circle.arrow"
|
|
133
|
+
bigoplus = "plus.circle.big"
|
|
134
|
+
dotplus = "plus.dot"
|
|
135
|
+
doubleplus = "plus.double"
|
|
136
|
+
pm = "plus.minus"
|
|
137
|
+
boxplus = "plus.square"
|
|
138
|
+
triangleplus = "plus.triangle"
|
|
139
|
+
tripleplus = "plus.triple"
|
|
140
|
+
minus = "minus"
|
|
141
|
+
ominus = "minus.circle"
|
|
142
|
+
dotminus = "minus.dot"
|
|
143
|
+
mp = "minus.plus"
|
|
144
|
+
boxminus = "minus.square"
|
|
145
|
+
eqsim = "minus.tilde"
|
|
146
|
+
triangleminus = "minus.triangle"
|
|
147
|
+
div = "div"
|
|
148
|
+
odiv = "div.circle"
|
|
149
|
+
times = "times"
|
|
150
|
+
bigtimes = "times.big"
|
|
151
|
+
otimes = "times.circle"
|
|
152
|
+
bigotimes = "times.circle.big"
|
|
153
|
+
divideontimes = "times.div"
|
|
154
|
+
leftthreetimes = "times.three.l"
|
|
155
|
+
rightthreetimes = "times.three.r"
|
|
156
|
+
ltimes = "times.l"
|
|
157
|
+
rtimes = "times.r"
|
|
158
|
+
boxtimes = "times.square"
|
|
159
|
+
triangletimes = "times.triangle"
|
|
160
|
+
mathratio = "ratio"
|
|
161
|
+
equal = "eq"
|
|
162
|
+
stareq = "eq.star"
|
|
163
|
+
circledequal = "eq.circle"
|
|
164
|
+
eqcolon = "eq.colon"
|
|
165
|
+
eqdef = "eq.def"
|
|
166
|
+
triangleq = "eq.delta"
|
|
167
|
+
veeeq = "eq.equi"
|
|
168
|
+
wedgeq = "eq.est"
|
|
169
|
+
eqgtr = "eq.gt"
|
|
170
|
+
eqless = "eq.lt"
|
|
171
|
+
measeq = "eq.m"
|
|
172
|
+
ne = "eq.not"
|
|
173
|
+
curlyeqprec = "eq.prec"
|
|
174
|
+
questeq = "eq.quest"
|
|
175
|
+
curlyeqsucc = "eq.succ"
|
|
176
|
+
# equiv = "eq.triple"
|
|
177
|
+
equiv = "equiv"
|
|
178
|
+
Equiv = "eq.quad"
|
|
179
|
+
greater = "gt"
|
|
180
|
+
ogreaterthan = "gt.circle"
|
|
181
|
+
gtrdot = "gt.dot"
|
|
182
|
+
gtrapprox = "gt.approx"
|
|
183
|
+
gg = "gt.double"
|
|
184
|
+
geq = "gt.eq"
|
|
185
|
+
geqslant = "gt.eq.slant"
|
|
186
|
+
gtreqless = "gt.eq.lt"
|
|
187
|
+
ngeq = "gt.eq.not"
|
|
188
|
+
geqq = "gt.equiv"
|
|
189
|
+
gtrless = "gt.lt"
|
|
190
|
+
ngtrless = "gt.lt.not"
|
|
191
|
+
gneq = "gt.neq"
|
|
192
|
+
gnapprox = "gt.napprox"
|
|
193
|
+
gneqq = "gt.nequiv"
|
|
194
|
+
ngtr = "gt.not"
|
|
195
|
+
gnsim = "gt.ntilde"
|
|
196
|
+
gtrsim = "gt.tilde"
|
|
197
|
+
ngtrsim = "gt.tilde.not"
|
|
198
|
+
vartriangleright = "gt.tri"
|
|
199
|
+
trianglerighteq = "gt.tri.eq"
|
|
200
|
+
ntrianglerighteq = "gt.tri.eq.not"
|
|
201
|
+
nvartriangleright = "gt.tri.not"
|
|
202
|
+
ggg = "gt.triple"
|
|
203
|
+
gggnest = "gt.triple.nested"
|
|
204
|
+
less = "lt"
|
|
205
|
+
olessthan = "lt.circle"
|
|
206
|
+
lessdot = "lt.dot"
|
|
207
|
+
lessapprox = "lt.approx"
|
|
208
|
+
ll = "lt.double"
|
|
209
|
+
leq = "lt.eq"
|
|
210
|
+
leqslant = "lt.eq.slant"
|
|
211
|
+
lesseqgtr = "lt.eq.gt"
|
|
212
|
+
nleq = "lt.eq.not"
|
|
213
|
+
leqq = "lt.equiv"
|
|
214
|
+
lessgtr = "lt.gt"
|
|
215
|
+
nlessgtr = "lt.gt.not"
|
|
216
|
+
lneq = "lt.neq"
|
|
217
|
+
lnapprox = "lt.napprox"
|
|
218
|
+
lneqq = "lt.nequiv"
|
|
219
|
+
nless = "lt.not"
|
|
220
|
+
lnsim = "lt.ntilde"
|
|
221
|
+
lesssim = "lt.tilde"
|
|
222
|
+
nlesssim = "lt.tilde.not"
|
|
223
|
+
vartriangleleft = "lt.tri"
|
|
224
|
+
trianglelefteq = "lt.tri.eq"
|
|
225
|
+
ntrianglelefteq = "lt.tri.eq.not"
|
|
226
|
+
nvartriangleleft = "lt.tri.not"
|
|
227
|
+
lll = "lt.triple"
|
|
228
|
+
lllnest = "lt.triple.nested"
|
|
229
|
+
approx = "approx"
|
|
230
|
+
approxeq = "approx.eq"
|
|
231
|
+
napprox = "approx.not"
|
|
232
|
+
prec = "prec"
|
|
233
|
+
precapprox = "prec.approx"
|
|
234
|
+
preccurlyeq = "prec.curly.eq"
|
|
235
|
+
npreccurlyeq = "prec.curly.eq.not"
|
|
236
|
+
Prec = "prec.double"
|
|
237
|
+
preceq = "prec.eq"
|
|
238
|
+
preceqq = "prec.equiv"
|
|
239
|
+
precnapprox = "prec.napprox"
|
|
240
|
+
precneq = "prec.neq"
|
|
241
|
+
precneqq = "prec.nequiv"
|
|
242
|
+
nprec = "prec.not"
|
|
243
|
+
precnsim = "prec.ntilde"
|
|
244
|
+
precsim = "prec.tilde"
|
|
245
|
+
succ = "succ"
|
|
246
|
+
succapprox = "succ.approx"
|
|
247
|
+
succcurlyeq = "succ.curly.eq"
|
|
248
|
+
nsucccurlyeq = "succ.curly.eq.not"
|
|
249
|
+
Succ = "succ.double"
|
|
250
|
+
succeq = "succ.eq"
|
|
251
|
+
succeqq = "succ.equiv"
|
|
252
|
+
succnapprox = "succ.napprox"
|
|
253
|
+
succneq = "succ.neq"
|
|
254
|
+
succneqq = "succ.nequiv"
|
|
255
|
+
nsucc = "succ.not"
|
|
256
|
+
succnsim = "succ.ntilde"
|
|
257
|
+
succsim = "succ.tilde"
|
|
258
|
+
nequiv = "equiv.not"
|
|
259
|
+
propto = "prop"
|
|
260
|
+
origof = "original"
|
|
261
|
+
imageof = "image"
|
|
262
|
+
# varnothing = "emptyset"
|
|
263
|
+
emptysetoarr = "emptyset.arrow.r"
|
|
264
|
+
emptysetoarrl = "emptyset.arrow.l"
|
|
265
|
+
emptysetobar = "emptyset.bar"
|
|
266
|
+
emptysetocirc = "emptyset.circle"
|
|
267
|
+
revemptyset = "emptyset.rev"
|
|
268
|
+
setminus = "without"
|
|
269
|
+
complement = "complement"
|
|
270
|
+
in = "in"
|
|
271
|
+
notin = "in.not"
|
|
272
|
+
ni = "in.rev"
|
|
273
|
+
nni = "in.rev.not"
|
|
274
|
+
smallni = "in.rev.small"
|
|
275
|
+
smallin = "in.small"
|
|
276
|
+
subset = "subset"
|
|
277
|
+
subsetdot = "subset.dot"
|
|
278
|
+
Subset = "subset.double"
|
|
279
|
+
subseteq = "subset.eq"
|
|
280
|
+
nsubseteq = "subset.eq.not"
|
|
281
|
+
sqsubseteq = "subset.eq.sq"
|
|
282
|
+
nsqsubseteq = "subset.eq.sq.not"
|
|
283
|
+
subsetneq = "subset.neq"
|
|
284
|
+
nsubset = "subset.not"
|
|
285
|
+
sqsubset = "subset.sq"
|
|
286
|
+
sqsubsetneq = "subset.sq.neq"
|
|
287
|
+
supset = "supset"
|
|
288
|
+
supsetdot = "supset.dot"
|
|
289
|
+
Supset = "supset.double"
|
|
290
|
+
supseteq = "supset.eq"
|
|
291
|
+
nsupseteq = "supset.eq.not"
|
|
292
|
+
sqsupseteq = "supset.eq.sq"
|
|
293
|
+
nsqsupseteq = "supset.eq.sq.not"
|
|
294
|
+
supsetneq = "supset.neq"
|
|
295
|
+
nsupset = "supset.not"
|
|
296
|
+
sqsupset = "supset.sq"
|
|
297
|
+
sqsupsetneq = "supset.sq.neq"
|
|
298
|
+
cup = "union"
|
|
299
|
+
cupleftarrow = "union.arrow"
|
|
300
|
+
bigcup = "union.big"
|
|
301
|
+
cupdot = "union.dot"
|
|
302
|
+
bigcupdot = "union.dot.big"
|
|
303
|
+
Cup = "union.double"
|
|
304
|
+
uminus = "union.minus"
|
|
305
|
+
cupvee = "union.or"
|
|
306
|
+
uplus = "union.plus"
|
|
307
|
+
biguplus = "union.plus.big"
|
|
308
|
+
sqcup = "union.sq"
|
|
309
|
+
bigsqcup = "union.sq.big"
|
|
310
|
+
Sqcup = "union.sq.double"
|
|
311
|
+
# cap = "sect"
|
|
312
|
+
# capwedge = "sect.and"
|
|
313
|
+
# bigcap = "sect.big"
|
|
314
|
+
# capdot = "sect.dot"
|
|
315
|
+
# Cap = "sect.double"
|
|
316
|
+
# sqcap = "sect.sq"
|
|
317
|
+
# bigsqcap = "sect.sq.big"
|
|
318
|
+
# Sqcap = "sect.sq.double"
|
|
319
|
+
infty = "infinity"
|
|
320
|
+
nvinfty = "infinity.bar"
|
|
321
|
+
iinfin = "infinity.incomplete"
|
|
322
|
+
tieinfty = "infinity.tie"
|
|
323
|
+
partial = "diff"
|
|
324
|
+
# nabla = "gradient"
|
|
325
|
+
sum = "sum"
|
|
326
|
+
sumint = "sum.integral"
|
|
327
|
+
prod = "product"
|
|
328
|
+
coprod = "product.co"
|
|
329
|
+
int = "integral"
|
|
330
|
+
intlarhk = "integral.arrow.hook"
|
|
331
|
+
awint = "integral.ccw"
|
|
332
|
+
oint = "integral.cont"
|
|
333
|
+
ointctrclockwise = "integral.cont.ccw"
|
|
334
|
+
varointclockwise = "integral.cont.cw"
|
|
335
|
+
intclockwise = "integral.cw"
|
|
336
|
+
intbar = "integral.dash"
|
|
337
|
+
intBar = "integral.dash.double"
|
|
338
|
+
iint = "integral.double"
|
|
339
|
+
iiiint = "integral.quad"
|
|
340
|
+
intcap = "integral.inter"
|
|
341
|
+
fint = "integral.slash"
|
|
342
|
+
sqint = "integral.square"
|
|
343
|
+
oiint = "integral.surf"
|
|
344
|
+
intx = "integral.times"
|
|
345
|
+
iiint = "integral.triple"
|
|
346
|
+
intcup = "integral.union"
|
|
347
|
+
oiiint = "integral.vol"
|
|
348
|
+
increment = "laplace"
|
|
349
|
+
forall = "forall"
|
|
350
|
+
exists = "exists"
|
|
351
|
+
nexists = "exists.not"
|
|
352
|
+
top = "top"
|
|
353
|
+
bot = "bot"
|
|
354
|
+
neg = "not"
|
|
355
|
+
wedge = "and"
|
|
356
|
+
bigwedge = "and.big"
|
|
357
|
+
curlywedge = "and.curly"
|
|
358
|
+
wedgedot = "and.dot"
|
|
359
|
+
Wedge = "and.double"
|
|
360
|
+
vee = "or"
|
|
361
|
+
bigvee = "or.big"
|
|
362
|
+
curlyvee = "or.curly"
|
|
363
|
+
veedot = "or.dot"
|
|
364
|
+
Vee = "or.double"
|
|
365
|
+
models = "models"
|
|
366
|
+
Vdash = "forces"
|
|
367
|
+
nVdash = "forces.not"
|
|
368
|
+
therefore = "therefore"
|
|
369
|
+
because = "because"
|
|
370
|
+
QED = "qed"
|
|
371
|
+
vysmwhtcircle = "circle.stroked.tiny"
|
|
372
|
+
multimap = "multimap"
|
|
373
|
+
dualmap = "multimap.double"
|
|
374
|
+
tplus = "tiny"
|
|
375
|
+
tminus = "miny"
|
|
376
|
+
mid = "divides"
|
|
377
|
+
nmid = "divides.not"
|
|
378
|
+
wr = "wreath"
|
|
379
|
+
parallel = "parallel"
|
|
380
|
+
nhpar = "parallel.struck"
|
|
381
|
+
circledparallel = "parallel.circle"
|
|
382
|
+
equalparallel = "parallel.eq"
|
|
383
|
+
equivVert = "parallel.equiv"
|
|
384
|
+
nparallel = "parallel.not"
|
|
385
|
+
eparsl = "parallel.slanted.eq"
|
|
386
|
+
smeparsl = "parallel.slanted.eq.tilde"
|
|
387
|
+
eqvparsl = "parallel.slanted.equiv"
|
|
388
|
+
parsim = "parallel.tilde"
|
|
389
|
+
perp = "perp"
|
|
390
|
+
operp = "perp.circle"
|
|
391
|
+
diameter = "diameter"
|
|
392
|
+
Join = "join"
|
|
393
|
+
rightouterjoin = "join.r"
|
|
394
|
+
leftouterjoin = "join.l"
|
|
395
|
+
fullouterjoin = "join.l.r"
|
|
396
|
+
smashtimes = "smash"
|
|
397
|
+
mathdollar = "dollar"
|
|
398
|
+
euro = "euro"
|
|
399
|
+
mathsterling = "pound"
|
|
400
|
+
mathyen = "yen"
|
|
401
|
+
checkmark = "checkmark"
|
|
402
|
+
maltese = "maltese"
|
|
403
|
+
clubsuit = "suit.club.filled"
|
|
404
|
+
varclubsuit = "suit.club.stroked"
|
|
405
|
+
vardiamondsuit = "suit.diamond.filled"
|
|
406
|
+
diamondsuit = "suit.diamond.stroked"
|
|
407
|
+
varheartsuit = "suit.heart.filled"
|
|
408
|
+
heartsuit = "suit.heart.stroked"
|
|
409
|
+
# spadesuit = "suit.spade.filled"
|
|
410
|
+
varspadesuit = "suit.spade.stroked"
|
|
411
|
+
quarternote = "note.quarter.alt"
|
|
412
|
+
eighthnote = "note.eighth.alt"
|
|
413
|
+
twonotes = "note.eighth.beamed"
|
|
414
|
+
natural = "natural"
|
|
415
|
+
flat = "flat"
|
|
416
|
+
sharp = "sharp"
|
|
417
|
+
smblkcircle = "bullet"
|
|
418
|
+
mdlgwhtcircle = "circle.stroked"
|
|
419
|
+
mdsmwhtcircle = "circle.stroked.small"
|
|
420
|
+
lgwhtcircle = "circle.stroked.big"
|
|
421
|
+
mdlgblkcircle = "circle.filled"
|
|
422
|
+
mdsmblkcircle = "circle.filled.tiny"
|
|
423
|
+
vysmblkcircle = "circle.filled.small"
|
|
424
|
+
lgblkcircle = "circle.filled.big"
|
|
425
|
+
dottedcircle = "circle.dotted"
|
|
426
|
+
circledcirc = "circle.nested"
|
|
427
|
+
whthorzoval = "ellipse.stroked.h"
|
|
428
|
+
whtvertoval = "ellipse.stroked.v"
|
|
429
|
+
blkhorzoval = "ellipse.filled.h"
|
|
430
|
+
blkvertoval = "ellipse.filled.v"
|
|
431
|
+
bigtriangleup = "triangle.stroked.t"
|
|
432
|
+
bigtriangledown = "triangle.stroked.b"
|
|
433
|
+
triangleright = "triangle.stroked.r"
|
|
434
|
+
triangleleft = "triangle.stroked.l"
|
|
435
|
+
lltriangle = "triangle.stroked.bl"
|
|
436
|
+
lrtriangle = "triangle.stroked.br"
|
|
437
|
+
ultriangle = "triangle.stroked.tl"
|
|
438
|
+
urtriangle = "triangle.stroked.tr"
|
|
439
|
+
vartriangle = "triangle.stroked.small.t"
|
|
440
|
+
triangledown = "triangle.stroked.small.b"
|
|
441
|
+
smalltriangleright = "triangle.stroked.small.r"
|
|
442
|
+
smalltriangleleft = "triangle.stroked.small.l"
|
|
443
|
+
whiteinwhitetriangle = "triangle.stroked.nested"
|
|
444
|
+
trianglecdot = "triangle.stroked.dot"
|
|
445
|
+
bigblacktriangleup = "triangle.filled.t"
|
|
446
|
+
bigblacktriangledown = "triangle.filled.b"
|
|
447
|
+
blacktriangleright = "triangle.filled.r"
|
|
448
|
+
blacktriangleleft = "triangle.filled.l"
|
|
449
|
+
llblacktriangle = "triangle.filled.bl"
|
|
450
|
+
lrblacktriangle = "triangle.filled.br"
|
|
451
|
+
ulblacktriangle = "triangle.filled.tl"
|
|
452
|
+
urblacktriangle = "triangle.filled.tr"
|
|
453
|
+
blacktriangle = "triangle.filled.small.t"
|
|
454
|
+
blacktriangledown = "triangle.filled.small.b"
|
|
455
|
+
smallblacktriangleright = "triangle.filled.small.r"
|
|
456
|
+
smallblacktriangleleft = "triangle.filled.small.l"
|
|
457
|
+
mdlgwhtsquare = "square.stroked"
|
|
458
|
+
smwhtsquare = "square.stroked.tiny"
|
|
459
|
+
mdsmwhtsquare = "square.stroked.small"
|
|
460
|
+
mdwhtsquare = "square.stroked.medium"
|
|
461
|
+
lgwhtsquare = "square.stroked.big"
|
|
462
|
+
dottedsquare = "square.stroked.dotted"
|
|
463
|
+
squoval = "square.stroked.rounded"
|
|
464
|
+
mdlgblksquare = "square.filled"
|
|
465
|
+
smblksquare = "square.filled.tiny"
|
|
466
|
+
mdsmblksquare = "square.filled.small"
|
|
467
|
+
mdblksquare = "square.filled.medium"
|
|
468
|
+
lgblksquare = "square.filled.big"
|
|
469
|
+
hrectangle = "rect.stroked.h"
|
|
470
|
+
vrectangle = "rect.stroked.v"
|
|
471
|
+
hrectangleblack = "rect.filled.h"
|
|
472
|
+
vrectangleblack = "rect.filled.v"
|
|
473
|
+
pentagon = "penta.stroked"
|
|
474
|
+
pentagonblack = "penta.filled"
|
|
475
|
+
varhexagon = "hexa.stroked"
|
|
476
|
+
varhexagonblack = "hexa.filled"
|
|
477
|
+
mdlgwhtdiamond = "diamond.stroked"
|
|
478
|
+
smwhtdiamond = "diamond.stroked.small"
|
|
479
|
+
mdwhtdiamond = "diamond.stroked.medium"
|
|
480
|
+
diamondcdot = "diamond.stroked.dot"
|
|
481
|
+
mdlgblkdiamond = "diamond.filled"
|
|
482
|
+
mdblkdiamond = "diamond.filled.medium"
|
|
483
|
+
smblkdiamond = "diamond.filled.small"
|
|
484
|
+
mdlgwhtlozenge = "lozenge.stroked"
|
|
485
|
+
smwhtlozenge = "lozenge.stroked.small"
|
|
486
|
+
mdwhtlozenge = "lozenge.stroked.medium"
|
|
487
|
+
mdlgblklozenge = "lozenge.filled"
|
|
488
|
+
smblklozenge = "lozenge.filled.small"
|
|
489
|
+
mdblklozenge = "lozenge.filled.medium"
|
|
490
|
+
parallelogram = "parallelogram.stroked"
|
|
491
|
+
parallelogramblack = "parallelogram.filled"
|
|
492
|
+
star = "star.op"
|
|
493
|
+
bigwhitestar = "star.stroked"
|
|
494
|
+
bigstar = "star.filled"
|
|
495
|
+
rightarrow = "arrow.r"
|
|
496
|
+
longmapsto = "arrow.r.long.bar"
|
|
497
|
+
mapsto = "arrow.r.bar"
|
|
498
|
+
rightdowncurvedarrow = "arrow.r.curve"
|
|
499
|
+
rightdasharrow = "arrow.r.dashed"
|
|
500
|
+
rightdotarrow = "arrow.r.dotted"
|
|
501
|
+
Rightarrow = "arrow.r.double"
|
|
502
|
+
Mapsto = "arrow.r.double.bar"
|
|
503
|
+
Longrightarrow = "arrow.r.double.long"
|
|
504
|
+
Longmapsto = "arrow.r.double.long.bar"
|
|
505
|
+
nRightarrow = "arrow.r.double.not"
|
|
506
|
+
hookrightarrow = "arrow.r.hook"
|
|
507
|
+
longrightarrow = "arrow.r.long"
|
|
508
|
+
longrightsquigarrow = "arrow.r.long.squiggly"
|
|
509
|
+
looparrowright = "arrow.r.loop"
|
|
510
|
+
nrightarrow = "arrow.r.not"
|
|
511
|
+
RRightarrow = "arrow.r.quad"
|
|
512
|
+
rightsquigarrow = "arrow.r.squiggly"
|
|
513
|
+
rightarrowbar = "arrow.r.stop"
|
|
514
|
+
rightwhitearrow = "arrow.r.stroked"
|
|
515
|
+
rightarrowtail = "arrow.r.tail"
|
|
516
|
+
similarrightarrow = "arrow.r.tilde"
|
|
517
|
+
Rrightarrow = "arrow.r.triple"
|
|
518
|
+
twoheadmapsto = "arrow.r.twohead.bar"
|
|
519
|
+
twoheadrightarrow = "arrow.r.twohead"
|
|
520
|
+
rightwavearrow = "arrow.r.wave"
|
|
521
|
+
leftarrow = "arrow.l"
|
|
522
|
+
mapsfrom = "arrow.l.bar"
|
|
523
|
+
leftdowncurvedarrow = "arrow.l.curve"
|
|
524
|
+
leftdasharrow = "arrow.l.dashed"
|
|
525
|
+
leftdotarrow = "arrow.l.dotted"
|
|
526
|
+
Leftarrow = "arrow.l.double"
|
|
527
|
+
Mapsfrom = "arrow.l.double.bar"
|
|
528
|
+
Longleftarrow = "arrow.l.double.long"
|
|
529
|
+
Longmapsfrom = "arrow.l.double.long.bar"
|
|
530
|
+
nLeftarrow = "arrow.l.double.not"
|
|
531
|
+
hookleftarrow = "arrow.l.hook"
|
|
532
|
+
longleftarrow = "arrow.l.long"
|
|
533
|
+
longmapsfrom = "arrow.l.long.bar"
|
|
534
|
+
longleftsquigarrow = "arrow.l.long.squiggly"
|
|
535
|
+
looparrowleft = "arrow.l.loop"
|
|
536
|
+
nleftarrow = "arrow.l.not"
|
|
537
|
+
LLeftarrow = "arrow.l.quad"
|
|
538
|
+
leftsquigarrow = "arrow.l.squiggly"
|
|
539
|
+
barleftarrow = "arrow.l.stop"
|
|
540
|
+
leftwhitearrow = "arrow.l.stroked"
|
|
541
|
+
leftarrowtail = "arrow.l.tail"
|
|
542
|
+
similarleftarrow = "arrow.l.tilde"
|
|
543
|
+
Lleftarrow = "arrow.l.triple"
|
|
544
|
+
twoheadmapsfrom = "arrow.l.twohead.bar"
|
|
545
|
+
twoheadleftarrow = "arrow.l.twohead"
|
|
546
|
+
leftwavearrow = "arrow.l.wave"
|
|
547
|
+
uparrow = "arrow.t"
|
|
548
|
+
mapsup = "arrow.t.bar"
|
|
549
|
+
uprightcurvearrow = "arrow.t.curve"
|
|
550
|
+
updasharrow = "arrow.t.dashed"
|
|
551
|
+
Uparrow = "arrow.t.double"
|
|
552
|
+
UUparrow = "arrow.t.quad"
|
|
553
|
+
baruparrow = "arrow.t.stop"
|
|
554
|
+
upwhitearrow = "arrow.t.stroked"
|
|
555
|
+
Uuparrow = "arrow.t.triple"
|
|
556
|
+
twoheaduparrow = "arrow.t.twohead"
|
|
557
|
+
downarrow = "arrow.b"
|
|
558
|
+
mapsdown = "arrow.b.bar"
|
|
559
|
+
downrightcurvedarrow = "arrow.b.curve"
|
|
560
|
+
downdasharrow = "arrow.b.dashed"
|
|
561
|
+
Downarrow = "arrow.b.double"
|
|
562
|
+
DDownarrow = "arrow.b.quad"
|
|
563
|
+
downarrowbar = "arrow.b.stop"
|
|
564
|
+
downwhitearrow = "arrow.b.stroked"
|
|
565
|
+
Ddownarrow = "arrow.b.triple"
|
|
566
|
+
twoheaddownarrow = "arrow.b.twohead"
|
|
567
|
+
leftrightarrow = "arrow.l.r"
|
|
568
|
+
Leftrightarrow = "arrow.l.r.double"
|
|
569
|
+
Longleftrightarrow = "arrow.l.r.double.long"
|
|
570
|
+
nLeftrightarrow = "arrow.l.r.double.not"
|
|
571
|
+
longleftrightarrow = "arrow.l.r.long"
|
|
572
|
+
nleftrightarrow = "arrow.l.r.not"
|
|
573
|
+
leftrightsquigarrow = "arrow.l.r.wave"
|
|
574
|
+
updownarrow = "arrow.t.b"
|
|
575
|
+
Updownarrow = "arrow.t.b.double"
|
|
576
|
+
nearrow = "arrow.tr"
|
|
577
|
+
Nearrow = "arrow.tr.double"
|
|
578
|
+
hknearrow = "arrow.tr.hook"
|
|
579
|
+
searrow = "arrow.br"
|
|
580
|
+
Searrow = "arrow.br.double"
|
|
581
|
+
hksearrow = "arrow.br.hook"
|
|
582
|
+
nwarrow = "arrow.tl"
|
|
583
|
+
Nwarrow = "arrow.tl.double"
|
|
584
|
+
hknwarrow = "arrow.tl.hook"
|
|
585
|
+
swarrow = "arrow.bl"
|
|
586
|
+
Swarrow = "arrow.bl.double"
|
|
587
|
+
hkswarrow = "arrow.bl.hook"
|
|
588
|
+
nwsearrow = "arrow.tl.br"
|
|
589
|
+
neswarrow = "arrow.tr.bl"
|
|
590
|
+
acwopencirclearrow = "arrow.ccw"
|
|
591
|
+
curvearrowleft = "arrow.ccw.half"
|
|
592
|
+
cwopencirclearrow = "arrow.cw"
|
|
593
|
+
curvearrowright = "arrow.cw.half"
|
|
594
|
+
downzigzagarrow = "arrow.zigzag"
|
|
595
|
+
rightrightarrows = "arrows.rr"
|
|
596
|
+
leftleftarrows = "arrows.ll"
|
|
597
|
+
upuparrows = "arrows.tt"
|
|
598
|
+
downdownarrows = "arrows.bb"
|
|
599
|
+
leftrightarrows = "arrows.lr"
|
|
600
|
+
barleftarrowrightarrowbar = "arrows.lr.stop"
|
|
601
|
+
rightleftarrows = "arrows.rl"
|
|
602
|
+
updownarrows = "arrows.tb"
|
|
603
|
+
downuparrows = "arrows.bt"
|
|
604
|
+
rightthreearrows = "arrows.rrr"
|
|
605
|
+
leftthreearrows = "arrows.lll"
|
|
606
|
+
rightharpoonup = "harpoon.rt"
|
|
607
|
+
barrightharpoonup = "harpoon.rt.bar"
|
|
608
|
+
rightharpoonupbar = "harpoon.rt.stop"
|
|
609
|
+
rightharpoondown = "harpoon.rb"
|
|
610
|
+
barrightharpoondown = "harpoon.rb.bar"
|
|
611
|
+
rightharpoondownbar = "harpoon.rb.stop"
|
|
612
|
+
leftharpoonup = "harpoon.lt"
|
|
613
|
+
leftharpoonupbar = "harpoon.lt.bar"
|
|
614
|
+
barleftharpoonup = "harpoon.lt.stop"
|
|
615
|
+
leftharpoondown = "harpoon.lb"
|
|
616
|
+
leftharpoondownbar = "harpoon.lb.bar"
|
|
617
|
+
barleftharpoondown = "harpoon.lb.stop"
|
|
618
|
+
upharpoonleft = "harpoon.tl"
|
|
619
|
+
upharpoonleftbar = "harpoon.tl.bar"
|
|
620
|
+
barupharpoonleft = "harpoon.tl.stop"
|
|
621
|
+
upharpoonright = "harpoon.tr"
|
|
622
|
+
upharpoonrightbar = "harpoon.tr.bar"
|
|
623
|
+
barupharpoonright = "harpoon.tr.stop"
|
|
624
|
+
downharpoonleft = "harpoon.bl"
|
|
625
|
+
bardownharpoonleft = "harpoon.bl.bar"
|
|
626
|
+
downharpoonleftbar = "harpoon.bl.stop"
|
|
627
|
+
downharpoonright = "harpoon.br"
|
|
628
|
+
bardownharpoonright = "harpoon.br.bar"
|
|
629
|
+
downharpoonrightbar = "harpoon.br.stop"
|
|
630
|
+
leftrightharpoonupup = "harpoon.lt.rt"
|
|
631
|
+
leftrightharpoondowndown = "harpoon.lb.rb"
|
|
632
|
+
leftrightharpoondownup = "harpoon.lb.rt"
|
|
633
|
+
leftrightharpoonupdown = "harpoon.lt.rb"
|
|
634
|
+
updownharpoonleftleft = "harpoon.tl.bl"
|
|
635
|
+
updownharpoonrightright = "harpoon.tr.br"
|
|
636
|
+
updownharpoonleftright = "harpoon.tl.br"
|
|
637
|
+
updownharpoonrightleft = "harpoon.tr.bl"
|
|
638
|
+
rightharpoonsupdown = "harpoons.rtrb"
|
|
639
|
+
downharpoonsleftright = "harpoons.blbr"
|
|
640
|
+
downupharpoonsleftright = "harpoons.bltr"
|
|
641
|
+
leftrightharpoonsdown = "harpoons.lbrb"
|
|
642
|
+
leftharpoonsupdown = "harpoons.ltlb"
|
|
643
|
+
leftrightharpoons = "harpoons.ltrb"
|
|
644
|
+
leftrightharpoonsup = "harpoons.ltrt"
|
|
645
|
+
rightleftharpoonsdown = "harpoons.rblb"
|
|
646
|
+
rightleftharpoons = "harpoons.rtlb"
|
|
647
|
+
rightleftharpoonsup = "harpoons.rtlt"
|
|
648
|
+
updownharpoonsleftright = "harpoons.tlbr"
|
|
649
|
+
upharpoonsleftright = "harpoons.tltr"
|
|
650
|
+
vdash = "tack.r"
|
|
651
|
+
nvdash = "tack.r.not"
|
|
652
|
+
vlongdash = "tack.r.long"
|
|
653
|
+
assert = "tack.r.short"
|
|
654
|
+
vDash = "tack.r.double"
|
|
655
|
+
nvDash = "tack.r.double.not"
|
|
656
|
+
dashv = "tack.l"
|
|
657
|
+
longdashv = "tack.l.long"
|
|
658
|
+
shortlefttack = "tack.l.short"
|
|
659
|
+
Dashv = "tack.l.double"
|
|
660
|
+
bigbot = "tack.t.big"
|
|
661
|
+
Vbar = "tack.t.double"
|
|
662
|
+
shortuptack = "tack.t.short"
|
|
663
|
+
bigtop = "tack.b.big"
|
|
664
|
+
barV = "tack.b.double"
|
|
665
|
+
shortdowntack = "tack.b.short"
|
|
666
|
+
dashVdash = "tack.l.r"
|
|
667
|
+
# mupalpha = "alpha"
|
|
668
|
+
# mupbeta = "beta"
|
|
669
|
+
# mupchi = "chi"
|
|
670
|
+
# mupdelta = "delta"
|
|
671
|
+
# mupvarepsilon = "epsilon"
|
|
672
|
+
# mupepsilon = "epsilon.alt"
|
|
673
|
+
# mupeta = "eta"
|
|
674
|
+
# mupgamma = "gamma"
|
|
675
|
+
# mupiota = "iota"
|
|
676
|
+
# mupkappa = "kappa"
|
|
677
|
+
# mupvarkappa = "kappa.alt"
|
|
678
|
+
# muplambda = "lambda"
|
|
679
|
+
# mupmu = "mu"
|
|
680
|
+
# mupnu = "nu"
|
|
681
|
+
# mho = "ohm.inv"
|
|
682
|
+
# mupomega = "omega"
|
|
683
|
+
# mupomicron = "omicron"
|
|
684
|
+
# mupvarphi = "phi"
|
|
685
|
+
# mupphi = "phi.alt"
|
|
686
|
+
# muppi = "pi"
|
|
687
|
+
# mupvarpi = "pi.alt"
|
|
688
|
+
# muppsi = "psi"
|
|
689
|
+
# muprho = "rho"
|
|
690
|
+
# mupvarrho = "rho.alt"
|
|
691
|
+
# mupsigma = "sigma"
|
|
692
|
+
# mupvarsigma = "sigma.alt"
|
|
693
|
+
# muptau = "tau"
|
|
694
|
+
# muptheta = "theta"
|
|
695
|
+
# mupvartheta = "theta.alt"
|
|
696
|
+
# mupupsilon = "upsilon"
|
|
697
|
+
# mupxi = "xi"
|
|
698
|
+
# mupzeta = "zeta"
|
|
699
|
+
# mupAlpha = "Alpha"
|
|
700
|
+
# mupBeta = "Beta"
|
|
701
|
+
# mupChi = "Chi"
|
|
702
|
+
# mupDelta = "Delta"
|
|
703
|
+
# mupEpsilon = "Epsilon"
|
|
704
|
+
# mupEta = "Eta"
|
|
705
|
+
# mupGamma = "Gamma"
|
|
706
|
+
# mupIota = "Iota"
|
|
707
|
+
# mupKappa = "Kappa"
|
|
708
|
+
# mupLambda = "Lambda"
|
|
709
|
+
# mupMu = "Mu"
|
|
710
|
+
# mupNu = "Nu"
|
|
711
|
+
# mupOmega = "Omega"
|
|
712
|
+
# mupOmicron = "Omicron"
|
|
713
|
+
# mupPhi = "Phi"
|
|
714
|
+
# mupPi = "Pi"
|
|
715
|
+
# mupPsi = "Psi"
|
|
716
|
+
# mupRho = "Rho"
|
|
717
|
+
# mupSigma = "Sigma"
|
|
718
|
+
# mupTau = "Tau"
|
|
719
|
+
# mupTheta = "Theta"
|
|
720
|
+
# mupUpsilon = "Upsilon"
|
|
721
|
+
# mupXi = "Xi"
|
|
722
|
+
# mupZeta = "Zeta"
|
|
723
|
+
BbbA = "AA"
|
|
724
|
+
BbbB = "BB"
|
|
725
|
+
BbbC = "CC"
|
|
726
|
+
BbbD = "DD"
|
|
727
|
+
BbbE = "EE"
|
|
728
|
+
BbbF = "FF"
|
|
729
|
+
BbbG = "GG"
|
|
730
|
+
BbbH = "HH"
|
|
731
|
+
BbbI = "II"
|
|
732
|
+
BbbJ = "JJ"
|
|
733
|
+
BbbK = "KK"
|
|
734
|
+
BbbL = "LL"
|
|
735
|
+
BbbM = "MM"
|
|
736
|
+
BbbN = "NN"
|
|
737
|
+
BbbO = "OO"
|
|
738
|
+
BbbP = "PP"
|
|
739
|
+
BbbQ = "QQ"
|
|
740
|
+
BbbR = "RR"
|
|
741
|
+
BbbS = "SS"
|
|
742
|
+
BbbT = "TT"
|
|
743
|
+
BbbU = "UU"
|
|
744
|
+
BbbV = "VV"
|
|
745
|
+
BbbW = "WW"
|
|
746
|
+
BbbX = "XX"
|
|
747
|
+
BbbY = "YY"
|
|
748
|
+
BbbZ = "ZZ"
|
|
749
|
+
ell = "ell"
|
|
750
|
+
Planckconst = "planck"
|
|
751
|
+
hslash = "planck.reduce"
|
|
752
|
+
Re = "Re"
|
|
753
|
+
Im = "Im"
|
|
754
|
+
imath = "dotless.i"
|
|
755
|
+
jmath = "dotless.j"
|