-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjVersion.js
More file actions
1295 lines (1270 loc) · 67.6 KB
/
Copy pathobjVersion.js
File metadata and controls
1295 lines (1270 loc) · 67.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright 2008-2025
Matthias Ehmann,
Michael Gerhaeuser,
Carsten Miller,
Bianca Valentin,
Andreas Walter,
Alfred Wassermann,
Peter Wilfahrt
This file is part of JSXGraph.
JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
You can redistribute it and/or modify it under the terms of the
* GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version
OR
* MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
JSXGraph is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License and
the MIT License along with JSXGraph. If not, see <https://www.gnu.org/licenses/>
and <https://opensource.org/licenses/MIT/>.
*/
/*global JXG: true, define: true*/
/*jslint nomen: true, plusplus: true*/
/**
* @fileoverview This file contains a library for rendering ASCIIMath.
*/
// import JXG from "../jxg.js";
// // ASCIIMath namespace
// JXG.ASCIIMath = JXG.ASCIIMath || {};
let CONST = 0, UNARY = 1, BINARY = 2, INFIX = 3, LEFTBRACKET = 4, RIGHTBRACKET = 5, SPACE = 6, UNDEROVER = 7, DEFINITION = 8, LEFTRIGHT = 9, TEXT = 10, BIG = 11, LONG = 12, STRETCHY = 13, MATRIX = 14, UNARYUNDEROVER = 15; // token type[
let AMquote = { input: "\"", tag: "mtext", output: "mbox", tex: null, ttype: TEXT };
let fixphi = true; //false to return to legacy phi/varphi mapping
const AMNode = {
appendChild(frag) {
if (frag.nodeName === '') { // document fragment, don't copy head=
for (let i = 0; i < frag.childNodes.length; i++) {
this.childNodes.push(frag.childNodes[i]);
if (frag.childNodes[i].nodeName !== '#text') {
this.children.push(frag.childNodes[i]);
frag.childNodes[i].parent = this;
}
}
frag.childNodes = [];
frag.children = [];
} else {
if (frag.parent !== null) { // if frag was part of another frag, we remove it (appendChild is a move, not a copy)
frag.parent.removeChild(frag);
}
frag.parent = this;
this.childNodes.push(frag); // includes any frag children
if (frag.nodeName !== '#text') // exclude text nodes from children
this.children.push(frag);
}
return frag;
},
setAttribute(key, value) {
this.attributes[key] = value;
return this;
},
get firstChild() {
if (this.childNodes.length > 0)
return this.childNodes[0];
throw new Error('No firstChild available');
},
get lastChild() {
if (this.childNodes.length > 0)
return this.childNodes.at(-1);
throw new Error('No lastChild available');
},
get tagName() {
return this.nodeName;
},
get nextSibling() {
if (this.parent !== null) {
for (let i = 0; i < this.parent.childNodes.length - 1; i++) { // don't check the last one, it has no siblings
if (this.parent.childNodes[i].unique === this.unique) {
return this.parent.childNodes[i + 1];
}
}
}
return null;
},
hasChildNodes() {
return this.childNodes.length > 0;
},
replaceChildren(x) {
this.childNodes = [x];
this.children = (x.nodeName !== '#text') ? [x] : [];
},
replaceChild(newChild, oldChild) {
for (let i = 0; i < this.childNodes.length; i++) {
if (oldChild.unique === this.childNodes[i].unique) {
this.childNodes[i] = newChild; // just reassigns the pointer
}
}
if (newChild.nodeName !== '#text' && newChild.nodeName !== '') { // fragments don't go into children
for (let i = 0; i < this.children.length; i++) {
if (oldChild.unique === this.children[i].unique) {
this.children[i] = newChild;
}
}
}
oldChild.parent = null;
return oldChild;
},
removeChild(node) {
let removed = false;
for (let i = 0; i < this.childNodes.length; i++) {
if (node.unique === this.childNodes[i].unique) { // ||
this.childNodes.splice(i, 1); // preserves iterator sequence
removed = true;
}
}
if (!removed)
throw new Error(`Failed to execute 'removeChild'. The node to be removed is not a child of this node.)`);
for (let i = 0; i < this.children.length; i++) {
if (node.unique === this.children[i].unique) {
this.children.splice(i, 1);
}
}
node.parent = null;
return node;
},
/** turn a tree of AMNodes into an HTML string */
flatten() {
let html = '';
let style = this.style.length > 0 ? ` style='${this.style}'` : '';
if (this.nodeName !== '#text' && this.nodeName !== '') {
let attributes = '';
for (let [key, value] of Object.entries(this.attributes))
attributes += ` ${key}="${value}"`;
html += `<${this.nodeName}${attributes}${style}>`;
}
if (this.hasChildNodes() && this.firstChild.nodeName === '#text') {
html += this.firstChild.nodeValue;
} else if (this.hasChildNodes()) {
for (let i = 0; i < this.children.length; i++) {
html += this.children[i].flatten();
}
}
html += `</${this.nodeName}>`;
return html;
},
create(t, content = '') {
const node = Object.create(AMNode) // new object with all methods
node.nodeValue = '';
node.parent = null;
node.childNodes = [];
node.children = [];
node.attributes = {};
node.style = '';
node.nodeName = t;
node.nodeValue = content;
node.unique = Symbol();
return node;
}
}
// JXG.ASCIIMath.AMNode = AMNode;
// JXG.ASCIIMath.ParseMath = {
const AMserver = {
// <mstyle AMserver.mathcolor="blue" fontsize="1em" mathsize="1em" fontfamily="serif" mathvariant="serif" displaystyle="true"><mrow><mo>[</mo><mtable columnlines="none none"><mtr><mtd><mi>a</mi></mtd><mtd><mi>b</mi></mtd></mtr></mtable><mo>]</mo></mrow></mstyle>
mathcolor: "blue", // change it to "" (to inherit) or another color
mathfontsize: "1em", // change to e.g. 1.2em for larger math
mathfontfamily: "serif", // change to "" to inherit (works in IE)
AMmathml: "http://www.w3.org/1998/Math/MathML",
AMnestingDepth: 0,
AMpreviousSymbol: -1, // eg: INFIX
AMcurrentSymbol: -1,
AMnames: [], //list of input symbols
displaystyle: true, // puts limits above and below large operators
showasciiformulaonhover: false, // helps students learn ASCIIMath
listseparator: ",", // when decimalsign="," you can opt to use "," as listseparator
decimalsign: ".", // if "," then when writing lists or matrices put
addmathvariant: false, // true to add mathvariant on font changes.
cancelColor: 'red', // sets default color for cancel
// unicode characters for math variants. Alpha, alpha, numbers, Greek, greek, special mappings
codemaps: {
'script': [0x1D49C, 0x1D4B6, null, null, null, {
0x42: 0x212C, 0x45: 0x2130, 0x46: 0x2131,
0x48: 0x210B, 0x49: 0x2110, 0x4C: 0x2112, 0x4D: 0x2133, 0x52: 0x211B, 0x65: 0x212F,
0x67: 0x210A, 0x6F: 0x2134
}],
'bold-script': [0x1D4D0, 0x1D4EA],
'fraktur': [0x1D504, 0x1D51E, null, null, null, {
0x43: 0x212D, 0x48: 0x210C, 0x49: 0x2111, 0x52: 0x211C, 0x5A: 0x2128,
}],
'bold-fraktur': [0x1D56C, 0x1D586],
'double-struck': [0x1D538, 0x1D552, 0x1D7D8, null, null, {
0x43: 0x2102, 0x48: 0x210D, 0x4E: 0x2115, 0x50: 0x2119, 0x51: 0x211A, 0x52: 0x211D,
0x5A: 0x2124, 0x393: 0x213E, 0x3A0: 0x213F, 0x3B3: 0x213D, 0x3C0: 0x213C,
}],
'bold': [0x1D400, 0x1D41A, 0x1D7CE, 0x1D6A8, 0x1D6C2],
'italic': [0x1D434, 0x1D44E, null, 0x1D6E2, 0x1D6FC, { 0x68: 0x210E }],
'bold-italic': [0x1D468, 0x1D482, null, 0x1D71C, 0x1D736],
'sans-serif': [0x1D5A0, 0x1D5BA, 0x1D7E2],
'sans-serif-italic': [0x1D608, 0x1D622, 0x1D7E2],
'bold-sans-serif': [0x1D5D4, 0x1D5EE, 0x1D7EC, 0x1D756, 0x1D770],
'sans-serif-bold-italic': [0x1D63C, 0x1D656, 0x1D7EC, 0x1D790, 0x1D7AA],
'monospace': [0x1D670, 0x1D68A, 0x1D7F6]
},
// based on https://docs.mathjax.org/en/latest/advanced/synchronize/filters.html#converting-full-width-characters-to-ascii-equivalents
codemapranges: [
[0x41, 0x5A],
[0x61, 0x7A],
[0x30, 0x39],
[0x391, 0x3A9, { 0x3F4: 0x3A2, 0x2207: 0x3AA }],
[0x3B1, 0x3C9, {
0x2202: 0x3CA, 0x3F5: 0x3CB, 0x3D1: 0x3CC,
0x3F0: 0x3CD, 0x3D5: 0x3CE, 0x3F1: 0x3CF, 0x3D6: 0x3D0
}],
],
AMsymbols: [
//some greek symbols
{ input: "alpha", tag: "mi", output: "\u03B1", tex: null, ttype: CONST },
{ input: "beta", tag: "mi", output: "\u03B2", tex: null, ttype: CONST },
{ input: "chi", tag: "mi", output: "\u03C7", tex: null, ttype: CONST },
{ input: "delta", tag: "mi", output: "\u03B4", tex: null, ttype: CONST },
{ input: "Delta", tag: "mo", output: "\u0394", tex: null, ttype: CONST },
{ input: "epsi", tag: "mi", output: "\u03B5", tex: "epsilon", ttype: CONST },
{ input: "varepsilon", tag: "mi", output: "\u025B", tex: null, ttype: CONST },
{ input: "eta", tag: "mi", output: "\u03B7", tex: null, ttype: CONST },
{ input: "gamma", tag: "mi", output: "\u03B3", tex: null, ttype: CONST },
{ input: "Gamma", tag: "mo", output: "\u0393", tex: null, ttype: CONST },
{ input: "iota", tag: "mi", output: "\u03B9", tex: null, ttype: CONST },
{ input: "kappa", tag: "mi", output: "\u03BA", tex: null, ttype: CONST },
{ input: "lambda", tag: "mi", output: "\u03BB", tex: null, ttype: CONST },
{ input: "Lambda", tag: "mo", output: "\u039B", tex: null, ttype: CONST },
{ input: "lamda", tag: "mi", output: "\u03BB", tex: null, ttype: CONST },
{ input: "Lamda", tag: "mo", output: "\u039B", tex: null, ttype: CONST },
{ input: "mu", tag: "mi", output: "\u03BC", tex: null, ttype: CONST },
{ input: "nu", tag: "mi", output: "\u03BD", tex: null, ttype: CONST },
{ input: "omega", tag: "mi", output: "\u03C9", tex: null, ttype: CONST },
{ input: "Omega", tag: "mo", output: "\u03A9", tex: null, ttype: CONST },
{ input: "phi", tag: "mi", output: fixphi ? "\u03D5" : "\u03C6", tex: null, ttype: CONST },
{ input: "varphi", tag: "mi", output: fixphi ? "\u03C6" : "\u03D5", tex: null, ttype: CONST },
{ input: "Phi", tag: "mo", output: "\u03A6", tex: null, ttype: CONST },
{ input: "pi", tag: "mi", output: "\u03C0", tex: null, ttype: CONST },
{ input: "Pi", tag: "mo", output: "\u03A0", tex: null, ttype: CONST },
{ input: "psi", tag: "mi", output: "\u03C8", tex: null, ttype: CONST },
{ input: "Psi", tag: "mi", output: "\u03A8", tex: null, ttype: CONST },
{ input: "rho", tag: "mi", output: "\u03C1", tex: null, ttype: CONST },
{ input: "sigma", tag: "mi", output: "\u03C3", tex: null, ttype: CONST },
{ input: "Sigma", tag: "mo", output: "\u03A3", tex: null, ttype: CONST },
{ input: "tau", tag: "mi", output: "\u03C4", tex: null, ttype: CONST },
{ input: "theta", tag: "mi", output: "\u03B8", tex: null, ttype: CONST },
{ input: "vartheta", tag: "mi", output: "\u03D1", tex: null, ttype: CONST },
{ input: "Theta", tag: "mo", output: "\u0398", tex: null, ttype: CONST },
{ input: "upsilon", tag: "mi", output: "\u03C5", tex: null, ttype: CONST },
{ input: "xi", tag: "mi", output: "\u03BE", tex: null, ttype: CONST },
{ input: "Xi", tag: "mo", output: "\u039E", tex: null, ttype: CONST },
{ input: "zeta", tag: "mi", output: "\u03B6", tex: null, ttype: CONST },
//binary operation symbols
//{input:"-", tag:"mo", output:"\u0096", tex:null, ttype:CONST},
{ input: "*", tag: "mo", output: "\u22C5", tex: "cdot", ttype: CONST },
{ input: "**", tag: "mo", output: "\u2217", tex: "ast", ttype: CONST },
{ input: "***", tag: "mo", output: "\u22C6", tex: "star", ttype: CONST },
{ input: "//", tag: "mo", output: "/", tex: null, ttype: CONST },
{ input: "\\\\", tag: "mo", output: "\\", tex: "backslash", ttype: CONST },
{ input: "setminus", tag: "mo", output: "\\", tex: null, ttype: CONST },
{ input: "xx", tag: "mo", output: "\u00D7", tex: "times", ttype: CONST },
{ input: "|><", tag: "mo", output: "\u22C9", tex: "ltimes", ttype: CONST },
{ input: "><|", tag: "mo", output: "\u22CA", tex: "rtimes", ttype: CONST },
{ input: "|><|", tag: "mo", output: "\u22C8", tex: "bowtie", ttype: CONST },
{ input: "-:", tag: "mo", output: "\u00F7", tex: "div", ttype: CONST },
{ input: "divide", tag: "mo", output: "-:", tex: null, ttype: DEFINITION },
{ input: "@", tag: "mo", output: "\u2218", tex: "circ", ttype: CONST },
{ input: "o+", tag: "mo", output: "\u2295", tex: "oplus", ttype: CONST },
{ input: "o-", tag: "mo", output: "\u2296", tex: "ominus", ttype: CONST },
{ input: "ox", tag: "mo", output: "\u2297", tex: "otimes", ttype: CONST },
{ input: "o.", tag: "mo", output: "\u2299", tex: "odot", ttype: CONST },
{ input: "sum", tag: "mo", output: "\u2211", tex: null, ttype: UNDEROVER },
{ input: "prod", tag: "mo", output: "\u220F", tex: null, ttype: UNDEROVER },
{ input: "^^", tag: "mo", output: "\u2227", tex: "wedge", ttype: CONST },
{ input: "^^^", tag: "mo", output: "\u22C0", tex: "bigwedge", ttype: UNDEROVER },
{ input: "vv", tag: "mo", output: "\u2228", tex: "vee", ttype: CONST },
{ input: "vvv", tag: "mo", output: "\u22C1", tex: "bigvee", ttype: UNDEROVER },
{ input: "nn", tag: "mo", output: "\u2229", tex: "cap", ttype: CONST },
{ input: "nnn", tag: "mo", output: "\u22C2", tex: "bigcap", ttype: UNDEROVER },
{ input: "uu", tag: "mo", output: "\u222A", tex: "cup", ttype: CONST },
{ input: "uuu", tag: "mo", output: "\u22C3", tex: "bigcup", ttype: UNDEROVER },
{ input: "dag", tag: "mo", output: "\u2020", tex: "dagger", ttype: CONST },
{ input: "ddag", tag: "mo", output: "\u2021", tex: "ddagger", ttype: CONST },
//binary relation symbols
{ input: "!=", tag: "mo", output: "\u2260", tex: "ne", ttype: CONST },
{ input: ":=", tag: "mo", output: ":=", tex: null, ttype: CONST },
{ input: "lt", tag: "mo", output: "<", tex: null, ttype: CONST },
{ input: "<=", tag: "mo", output: "\u2264", tex: "le", ttype: CONST },
{ input: "lt=", tag: "mo", output: "\u2264", tex: "leq", ttype: CONST },
{ input: "gt", tag: "mo", output: ">", tex: null, ttype: CONST },
{ input: "mlt", tag: "mo", output: "\u226A", tex: "ll", ttype: CONST },
{ input: ">=", tag: "mo", output: "\u2265", tex: "ge", ttype: CONST },
{ input: "gt=", tag: "mo", output: "\u2265", tex: "geq", ttype: CONST },
{ input: "mgt", tag: "mo", output: "\u226B", tex: "gg", ttype: CONST },
{ input: "-<", tag: "mo", output: "\u227A", tex: "prec", ttype: CONST },
{ input: "-lt", tag: "mo", output: "\u227A", tex: null, ttype: CONST },
{ input: ">-", tag: "mo", output: "\u227B", tex: "succ", ttype: CONST },
{ input: "-<=", tag: "mo", output: "\u2AAF", tex: "preceq", ttype: CONST },
{ input: ">-=", tag: "mo", output: "\u2AB0", tex: "succeq", ttype: CONST },
{ input: "in", tag: "mo", output: "\u2208", tex: null, ttype: CONST },
{ input: "!in", tag: "mo", output: "\u2209", tex: "notin", ttype: CONST },
{ input: "sub", tag: "mo", output: "\u2282", tex: "subset", ttype: CONST },
{ input: "!sub", tag: "mo", output: "\u2284", tex: "not\\subset", ttype: CONST },
{ input: "notsubset", tag: "mo", output: "!sub", tex: null, ttype: DEFINITION },
{ input: "sup", tag: "mo", output: "\u2283", tex: "supset", ttype: CONST },
{ input: "!sup", tag: "mo", output: "\u2285", tex: "not\\supset", ttype: CONST },
{ input: "notsupset", tag: "mo", output: "!sup", tex: null, ttype: DEFINITION },
{ input: "sube", tag: "mo", output: "\u2286", tex: "subseteq", ttype: CONST },
{ input: "!sube", tag: "mo", output: "\u2288", tex: "not\\subseteq", ttype: CONST },
{ input: "notsubseteq", tag: "mo", output: "!sube", tex: null, ttype: DEFINITION },
{ input: "supe", tag: "mo", output: "\u2287", tex: "supseteq", ttype: CONST },
{ input: "!supe", tag: "mo", output: "\u2289", tex: "not\\supseteq", ttype: CONST },
{ input: "notsupseteq", tag: "mo", output: "!supe", tex: null, ttype: DEFINITION },
{ input: "-=", tag: "mo", output: "\u2261", tex: "equiv", ttype: CONST },
{ input: "!-=", tag: "mo", output: "\u2262", tex: "not\\equiv", ttype: CONST },
{ input: "notequiv", tag: "mo", output: "!-=", tex: null, ttype: DEFINITION },
{ input: "~=", tag: "mo", output: "\u2245", tex: "cong", ttype: CONST },
{ input: "~~", tag: "mo", output: "\u2248", tex: "approx", ttype: CONST },
{ input: "~", tag: "mo", output: "\u223C", tex: "sim", ttype: CONST },
{ input: "prop", tag: "mo", output: "\u221D", tex: "propto", ttype: CONST },
//logical symbols
{ input: "and", tag: "mtext", output: "and", tex: null, ttype: SPACE },
{ input: "or", tag: "mtext", output: "or", tex: null, ttype: SPACE },
{ input: "not", tag: "mo", output: "\u00AC", tex: "neg", ttype: CONST },
{ input: "=>", tag: "mo", output: "\u21D2", tex: "implies", ttype: CONST },
{ input: "if", tag: "mo", output: "if", tex: null, ttype: SPACE },
{ input: "<=>", tag: "mo", output: "\u21D4", tex: "iff", ttype: CONST },
{ input: "AA", tag: "mo", output: "\u2200", tex: "forall", ttype: CONST },
{ input: "EE", tag: "mo", output: "\u2203", tex: "exists", ttype: CONST },
{ input: "_|_", tag: "mo", output: "\u22A5", tex: "bot", ttype: CONST },
{ input: "TT", tag: "mo", output: "\u22A4", tex: "top", ttype: CONST },
{ input: "|--", tag: "mo", output: "\u22A2", tex: "vdash", ttype: CONST },
{ input: "|==", tag: "mo", output: "\u22A8", tex: "models", ttype: CONST },
//grouping brackets
{ input: "(", tag: "mo", output: "(", tex: "left(", ttype: LEFTBRACKET },
{ input: ")", tag: "mo", output: ")", tex: "right)", ttype: RIGHTBRACKET },
{ input: "[", tag: "mo", output: "[", tex: "left[", ttype: LEFTBRACKET },
{ input: "]", tag: "mo", output: "]", tex: "right]", ttype: RIGHTBRACKET },
{ input: "{", tag: "mo", output: "{", tex: null, ttype: LEFTBRACKET },
{ input: "}", tag: "mo", output: "}", tex: null, ttype: RIGHTBRACKET },
{ input: "|", tag: "mo", output: "|", tex: null, ttype: LEFTRIGHT },
{ input: ":|:", tag: "mo", output: "|", tex: null, ttype: CONST },
{ input: "|:", tag: "mo", output: "|", tex: null, ttype: LEFTBRACKET },
{ input: ":|", tag: "mo", output: "|", tex: null, ttype: RIGHTBRACKET },
//{input:"||", tag:"mo", output:"||", tex:null, ttype:LEFTRIGHT},
{ input: "(:", tag: "mo", output: "\u2329", tex: "langle", ttype: LEFTBRACKET },
{ input: ":)", tag: "mo", output: "\u232A", tex: "rangle", ttype: RIGHTBRACKET },
{ input: "<<", tag: "mo", output: "\u2329", tex: null, ttype: LEFTBRACKET },
{ input: ">>", tag: "mo", output: "\u232A", tex: null, ttype: RIGHTBRACKET },
{ input: "{:", tag: "mo", output: "{:", tex: null, ttype: LEFTBRACKET, invisible: true },
{ input: ":}", tag: "mo", output: ":}", tex: null, ttype: RIGHTBRACKET, invisible: true },
//miscellaneous symbols
{ input: "int", tag: "mo", output: "\u222B", tex: null, ttype: CONST },
{ input: "dx", tag: "mi", output: "{:d x:}", tex: null, ttype: DEFINITION },
{ input: "dy", tag: "mi", output: "{:d y:}", tex: null, ttype: DEFINITION },
{ input: "dz", tag: "mi", output: "{:d z:}", tex: null, ttype: DEFINITION },
{ input: "dt", tag: "mi", output: "{:d t:}", tex: null, ttype: DEFINITION },
{ input: "oint", tag: "mo", output: "\u222E", tex: null, ttype: CONST },
{ input: "del", tag: "mo", output: "\u2202", tex: "partial", ttype: CONST },
{ input: "grad", tag: "mo", output: "\u2207", tex: "nabla", ttype: CONST },
{ input: "+-", tag: "mo", output: "\u00B1", tex: "pm", ttype: CONST },
{ input: "-+", tag: "mo", output: "\u2213", tex: "mp", ttype: CONST },
{ input: "O/", tag: "mo", output: "\u2205", tex: "emptyset", ttype: CONST },
{ input: "oo", tag: "mo", output: "\u221E", tex: "infty", ttype: CONST },
{ input: "aleph", tag: "mo", output: "\u2135", tex: null, ttype: CONST },
{ input: "...", tag: "mo", output: "...", tex: "ldots", ttype: CONST },
{ input: ":.", tag: "mo", output: "\u2234", tex: "therefore", ttype: CONST },
{ input: ":'", tag: "mo", output: "\u2235", tex: "because", ttype: CONST },
{ input: "/_", tag: "mo", output: "\u2220", tex: "angle", ttype: CONST },
{ input: "/_\\", tag: "mo", output: "\u25B3", tex: "triangle", ttype: CONST },
{ input: "'", tag: "mo", output: "\u2032", tex: "prime", ttype: CONST },
{ input: "tilde", tag: "mover", output: "~", tex: null, ttype: UNARY, acc: true },
{ input: "\\ ", tag: "mo", output: "\u00A0", tex: null, ttype: CONST },
{ input: "frown", tag: "mo", output: "\u2322", tex: null, ttype: CONST },
{ input: "quad", tag: "mspace", output: "1", tex: null, ttype: CONST },
{ input: "qquad", tag: "mspace", output: "2", tex: null, ttype: CONST },
{ input: "enspace", tag: "mspace", output: "0.5", tex: null, ttype: CONST },
{ input: "thinspace", tag: "mspace", output: "0.17", tex: null, ttype: CONST },
{ input: "mspace", tag: "mspace", output: "mspace", tex: null, ttype: TEXT },
{ input: "vdots", tag: "mo", output: "\u22EE", tex: null, ttype: CONST },
{ input: "ddots", tag: "mo", output: "\u22F1", tex: null, ttype: CONST },
{ input: "diamond", tag: "mo", output: "\u22C4", tex: null, ttype: CONST },
{ input: "square", tag: "mo", output: "\u25A1", tex: null, ttype: CONST },
{ input: "|__", tag: "mo", output: "\u230A", tex: "lfloor", ttype: CONST },
{ input: "__|", tag: "mo", output: "\u230B", tex: "rfloor", ttype: CONST },
{ input: "|~", tag: "mo", output: "\u2308", tex: "lceiling", ttype: CONST },
{ input: "~|", tag: "mo", output: "\u2309", tex: "rceiling", ttype: CONST },
{ input: "CC", tag: "mo", output: "\u2102", tex: null, ttype: CONST },
{ input: "NN", tag: "mo", output: "\u2115", tex: null, ttype: CONST },
{ input: "QQ", tag: "mo", output: "\u211A", tex: null, ttype: CONST },
{ input: "RR", tag: "mo", output: "\u211D", tex: null, ttype: CONST },
{ input: "ZZ", tag: "mo", output: "\u2124", tex: null, ttype: CONST },
{ input: "f", tag: "mi", output: "f", tex: null, ttype: UNARY, func: true },
{ input: "g", tag: "mi", output: "g", tex: null, ttype: UNARY, func: true },
{ input: "hbar", tag: "mo", output: "\u210F", tex: null, ttype: CONST },
//standard functions
{ input: "lim", tag: "mo", output: "lim", tex: null, ttype: UNDEROVER },
{ input: "Lim", tag: "mo", output: "Lim", tex: null, ttype: UNDEROVER },
{ input: "sin", tag: "mo", output: "sin", tex: null, ttype: UNARY, func: true },
{ input: "cos", tag: "mo", output: "cos", tex: null, ttype: UNARY, func: true },
{ input: "tan", tag: "mo", output: "tan", tex: null, ttype: UNARY, func: true },
{ input: "sinh", tag: "mo", output: "sinh", tex: null, ttype: UNARY, func: true },
{ input: "cosh", tag: "mo", output: "cosh", tex: null, ttype: UNARY, func: true },
{ input: "tanh", tag: "mo", output: "tanh", tex: null, ttype: UNARY, func: true },
{ input: "cot", tag: "mo", output: "cot", tex: null, ttype: UNARY, func: true },
{ input: "sec", tag: "mo", output: "sec", tex: null, ttype: UNARY, func: true },
{ input: "csc", tag: "mo", output: "csc", tex: null, ttype: UNARY, func: true },
{ input: "arcsin", tag: "mo", output: "arcsin", tex: null, ttype: UNARY, func: true },
{ input: "arccos", tag: "mo", output: "arccos", tex: null, ttype: UNARY, func: true },
{ input: "arctan", tag: "mo", output: "arctan", tex: null, ttype: UNARY, func: true },
{ input: "arcsec", tag: "mo", output: "arcsec", tex: null, ttype: UNARY, func: true },
{ input: "arccsc", tag: "mo", output: "arccsc", tex: null, ttype: UNARY, func: true },
{ input: "arccot", tag: "mo", output: "arccot", tex: null, ttype: UNARY, func: true },
{ input: "coth", tag: "mo", output: "coth", tex: null, ttype: UNARY, func: true },
{ input: "sech", tag: "mo", output: "sech", tex: null, ttype: UNARY, func: true },
{ input: "csch", tag: "mo", output: "csch", tex: null, ttype: UNARY, func: true },
{ input: "exp", tag: "mo", output: "exp", tex: null, ttype: UNARY, func: true },
{ input: "abs", tag: "mo", output: "abs", tex: null, ttype: UNARY, rewriteleftright: ["|", "|"] },
{ input: "norm", tag: "mo", output: "norm", tex: null, ttype: UNARY, rewriteleftright: ["\u2016", "\u2016"] },
{ input: "floor", tag: "mo", output: "floor", tex: null, ttype: UNARY, rewriteleftright: ["\u230A", "\u230B"] },
{ input: "ceil", tag: "mo", output: "ceil", tex: null, ttype: UNARY, rewriteleftright: ["\u2308", "\u2309"] },
{ input: "log", tag: "mo", output: "log", tex: null, ttype: UNARY, func: true },
{ input: "ln", tag: "mo", output: "ln", tex: null, ttype: UNARY, func: true },
{ input: "det", tag: "mo", output: "det", tex: null, ttype: UNARY, func: true },
{ input: "dim", tag: "mo", output: "dim", tex: null, ttype: CONST },
{ input: "mod", tag: "mo", output: "mod", tex: null, ttype: CONST },
{ input: "gcd", tag: "mo", output: "gcd", tex: null, ttype: UNARY, func: true },
{ input: "lcm", tag: "mo", output: "lcm", tex: null, ttype: UNARY, func: true },
{ input: "lub", tag: "mo", output: "lub", tex: null, ttype: CONST },
{ input: "glb", tag: "mo", output: "glb", tex: null, ttype: CONST },
{ input: "min", tag: "mo", output: "min", tex: null, ttype: UNDEROVER },
{ input: "max", tag: "mo", output: "max", tex: null, ttype: UNDEROVER },
{ input: "Sin", tag: "mo", output: "Sin", tex: null, ttype: UNARY, func: true },
{ input: "Cos", tag: "mo", output: "Cos", tex: null, ttype: UNARY, func: true },
{ input: "Tan", tag: "mo", output: "Tan", tex: null, ttype: UNARY, func: true },
{ input: "Arcsin", tag: "mo", output: "Arcsin", tex: null, ttype: UNARY, func: true },
{ input: "Arccos", tag: "mo", output: "Arccos", tex: null, ttype: UNARY, func: true },
{ input: "Arctan", tag: "mo", output: "Arctan", tex: null, ttype: UNARY, func: true },
{ input: "Sinh", tag: "mo", output: "Sinh", tex: null, ttype: UNARY, func: true },
{ input: "Cosh", tag: "mo", output: "Cosh", tex: null, ttype: UNARY, func: true },
{ input: "Tanh", tag: "mo", output: "Tanh", tex: null, ttype: UNARY, func: true },
{ input: "Cot", tag: "mo", output: "Cot", tex: null, ttype: UNARY, func: true },
{ input: "Sec", tag: "mo", output: "Sec", tex: null, ttype: UNARY, func: true },
{ input: "Csc", tag: "mo", output: "Csc", tex: null, ttype: UNARY, func: true },
{ input: "Log", tag: "mo", output: "Log", tex: null, ttype: UNARY, func: true },
{ input: "Ln", tag: "mo", output: "Ln", tex: null, ttype: UNARY, func: true },
{ input: "Abs", tag: "mo", output: "abs", tex: null, ttype: UNARY, notexcopy: true, rewriteleftright: ["|", "|"] },
//arrows
{ input: "uarr", tag: "mo", output: "\u2191", tex: "uparrow", ttype: CONST },
{ input: "darr", tag: "mo", output: "\u2193", tex: "downarrow", ttype: CONST },
{ input: "rarr", tag: "mo", output: "\u2192", tex: "rightarrow", ttype: CONST },
{ input: "->", tag: "mo", output: "\u2192", tex: "to", ttype: CONST },
{ input: ">->", tag: "mo", output: "\u21A3", tex: "rightarrowtail", ttype: CONST },
{ input: "->>", tag: "mo", output: "\u21A0", tex: "twoheadrightarrow", ttype: CONST },
{ input: ">->>", tag: "mo", output: "\u2916", tex: "twoheadrightarrowtail", ttype: CONST },
{ input: "|->", tag: "mo", output: "\u21A6", tex: "mapsto", ttype: CONST },
{ input: "larr", tag: "mo", output: "\u2190", tex: "leftarrow", ttype: CONST },
{ input: "harr", tag: "mo", output: "\u2194", tex: "leftrightarrow", ttype: CONST },
{ input: "rArr", tag: "mo", output: "\u21D2", tex: "Rightarrow", ttype: CONST },
{ input: "lArr", tag: "mo", output: "\u21D0", tex: "Leftarrow", ttype: CONST },
{ input: "dArr", tag: "mo", output: "\u21D3", tex: "Downarrow", ttype: CONST },
{ input: "hArr", tag: "mo", output: "\u21D4", tex: "Leftrightarrow", ttype: CONST },
{ input: "rightleftharpoons", tag: "mo", output: "\u21CC", tex: null, ttype: CONST },
//commands with argument
{ input: "sqrt", tag: "msqrt", output: "sqrt", tex: null, ttype: UNARY },
{ input: "root", tag: "mroot", output: "root", tex: null, ttype: BINARY },
{ input: "frac", tag: "mfrac", output: "/", tex: null, ttype: BINARY },
{ input: "/", tag: "mfrac", output: "/", tex: null, ttype: INFIX },
{ input: "stackrel", tag: "mover", output: "stackrel", tex: null, ttype: BINARY },
{ input: "overset", tag: "mover", output: "stackrel", tex: null, ttype: BINARY },
{ input: "underset", tag: "munder", output: "stackrel", tex: null, ttype: BINARY },
{ input: "_", tag: "msub", output: "_", tex: null, ttype: INFIX },
{ input: "^", tag: "msup", output: "^", tex: null, ttype: INFIX },
{ input: "hat", tag: "mover", output: "\u0302", tex: null, ttype: UNARY, acc: true },
{ input: "bar", tag: "mover", output: "\u00AF", tex: "overline", ttype: UNARY, acc: true },
{ input: "vec", tag: "mover", output: "\u2192", tex: null, ttype: UNARY, acc: true },
{ input: "dot", tag: "mover", output: ".", tex: null, ttype: UNARY, acc: true },
{ input: "ddot", tag: "mover", output: "..", tex: null, ttype: UNARY, acc: true },
{ input: "overarc", tag: "mover", output: "\u23DC", tex: "overparen", ttype: UNARY, acc: true },
{ input: "ul", tag: "munder", output: "\u0332", tex: "underline", ttype: UNARY, acc: true },
{ input: "ubrace", tag: "munder", output: "\u23DF", tex: "underbrace", ttype: UNARYUNDEROVER, acc: true },
{ input: "obrace", tag: "mover", output: "\u23DE", tex: "overbrace", ttype: UNARYUNDEROVER, acc: true },
{ input: "text", tag: "mtext", output: "text", tex: null, ttype: TEXT },
{ input: "mbox", tag: "mtext", output: "mbox", tex: null, ttype: TEXT },
{ input: "color", tag: "mrow", output: " ", ttype: BINARY },
{ input: "id", tag: "mrow", output: " ", ttype: BINARY },
{ input: "class", tag: "mrow", output: " ", ttype: BINARY },
{ input: "cancel", tag: "mrow", output: "cancel", tex: null, ttype: UNARY },
AMquote,
//TODO figure out why we require a space in 'output for these code commands to work
{ input: "bb", ttype: UNARY, tex: "mathbf", codes: "bold", tag: "", output: "bb" },
{ input: "sf", ttype: UNARY, tex: "mathsf", codes: "sans-serif", tag: "", output: "sf" },
{ input: "sfit", ttype: UNARY, tex: null, codes: "sans-serif-italic", tag: "", output: "sfit" },
{ input: "bbsf", ttype: UNARY, tex: null, codes: "bold-sans-serif", tag: "", output: "bbsf" },
{ input: "bbb", ttype: UNARY, tex: "mathbb", codes: "double-struck", tag: "", output: "bbb" },
{ input: "cc", ttype: UNARY, tex: "mathcal", codes: "script", tag: "", output: "cc" },
{ input: "bbcc", ttype: UNARY, tex: null, codes: "bold-script", tag: "", output: "bbcc" },
{ input: "tt", ttype: UNARY, tex: "mathtt", codes: "monospace", tag: "", output: "tt" },
{ input: "fr", ttype: UNARY, tex: "mathfrak", codes: "fraktur", tag: "", output: "fr" },
{ input: "bbfr", ttype: UNARY, tex: null, codes: "bold-fraktur", tag: "", output: "bbfr" },
{ input: "bbit", ttype: UNARY, tex: null, codes: "bold-italic", tag: "", output: "bbit" },
{ input: "bbsfit", ttype: UNARY, tex: null, codes: "sans-serif-bold-italic", tag: "", output: "bbsfit" },
{ input: "bold", tex: null, ttype: UNARY, codes: "bold", tag: "", output: "bold" },
],
/*Parsing ASCII math expressions with the following grammar
v ::= [A-Za-z] | greek letters | numbers | other constant symbols
u ::= sqrt | text | bb | other unary symbols for font commands
b ::= frac | root | stackrel binary symbols
l ::= ( | [ | { | (: | {: left brackets
r ::= ) | ] | } | :) | :} right brackets
S ::= v | lEr | uS | bSS Simple expression
I ::= S_S | S^S | S_S^S | S Intermediate expression
E ::= IE | I/I Expression
Each terminal symbol is translated into a corresponding mathml node.*/
constructor: () => {
AMserver.initSymbols();
return AMserver;
},
cancelStyle: (color) => {
return `
padding-left:0.5em;
padding-right:0.5em;
background:linear-gradient(to top left,
white 0,
white calc(50% - 1px),
${color},
white calc(50% + 1px)) `;
},
createMmlNode: (t, frag) => {
let node = AMNode.create(t);
if (frag) {
node.appendChild(frag);
}
return node;
},
/** replaces document.createTextNode() */
createTextNode: (content) => {
let newNode = AMNode.create('#text', content);
return newNode;
},
/** replaces document.createDocumentFragment() */
createDocumentFragment: () => {
let newNode = AMNode.create('');
return newNode;
},
newcommand: (oldstr, newstr) => {
AMserver.AMsymbols.push({ input: oldstr, tag: "mo", output: newstr, tex: null, ttype: DEFINITION });
AMserver.refreshSymbols();
},
newsymbol: (symbolobj) => {
AMserver.AMsymbols.push(symbolobj);
AMserver.refreshSymbols();
},
compareNames: (s1, s2) => {
if (s1.input > s2.input)
return 1;
else
return -1;
},
initSymbols: () => {
let i;
let symlen = AMserver.AMsymbols.length;
for (i = 0; i < symlen; i++) {
if (AMserver.AMsymbols[i].tex) {
AMserver.AMsymbols.push({
input: (AMserver.AMsymbols[i].tex),
tag: AMserver.AMsymbols[i].tag, output: AMserver.AMsymbols[i].output, ttype: AMserver.AMsymbols[i].ttype,
acc: (AMserver.AMsymbols[i].acc || false), codes: (AMserver.AMsymbols[i].codes || false)
});
}
}
AMserver.refreshSymbols();
},
refreshSymbols: () => {
let i;
AMserver.AMsymbols.sort(AMserver.compareNames);
for (i = 0; i < AMserver.AMsymbols.length; i++)
AMserver.AMnames[i] = AMserver.AMsymbols[i].input;
},
define: (oldstr, newstr) => {
AMserver.AMsymbols.push({ input: oldstr, tag: "mo", output: newstr, tex: null, ttype: DEFINITION });
AMserver.refreshSymbols(); // this may be a problem if many symbols are defined!
},
AMremoveCharsAndBlanks: (str, n) => {
//remove n characters and any following blanks
let st, i;
if (str.charAt(n) == "\\" && str.charAt(n + 1) != "\\" && str.charAt(n + 1) != " ")
st = str.slice(n + 1);
else
st = str.slice(n);
for (i = 0; i < st.length && st.charCodeAt(i) <= 32; i = i + 1)
;
return st.slice(i);
},
position: (arr, str, n) => {
// return position >=n where str appears or would be inserted
// assumes arr is sorted
let i;
if (n == 0) {
let h, m;
n = -1;
h = arr.length;
while (n + 1 < h) {
m = (n + h) >> 1;
if (arr[m] < str)
n = m;
else
h = m;
}
return h;
}
else
for (i = n; i < arr.length && arr[i] < str; i++)
;
return i; // i=arr.length || arr[i]>=str
},
AMgetSymbol: (str) => {
//return maximal initial substring of str that appears in names
//return null if there is none
let k = 0; //new pos
let j = 0; //old pos
let mk = -1; //match pos
let st;
let tagst;
let match = "";
let more = true;
for (let i = 1; i <= str.length && more; i++) {
st = str.slice(0, i); //initial substring of length i
j = k;
k = AMserver.position(AMserver.AMnames, st, j);
if (k < AMserver.AMnames.length && str.slice(0, AMserver.AMnames[k].length) == AMserver.AMnames[k]) {
match = AMserver.AMnames[k];
mk = k;
i = match.length;
}
more = k < AMserver.AMnames.length && str.slice(0, AMserver.AMnames[k].length) >= AMserver.AMnames[k];
}
AMserver.AMpreviousSymbol = AMserver.AMcurrentSymbol;
if (match != "") {
AMserver.AMcurrentSymbol = AMserver.AMsymbols[mk].ttype;
return AMserver.AMsymbols[mk];
}
// if str[0] is a digit or - return maxsubstring of digits.digits
AMserver.AMcurrentSymbol = CONST;
k = 1;
let useddecimal = false;
st = str.slice(0, 1);
let integ = true;
while ("0" <= st && st <= "9" && k <= str.length) {
st = str.slice(k, k + 1);
k++;
}
if (st == AMserver.decimalsign) {
st = str.slice(k, k + 1);
if (k > 1 && (AMserver.decimalsign != AMserver.listseparator || st != " ") && k < str.length) {
k++;
useddecimal = true;
}
if ("0" <= st && st <= "9") {
integ = false;
if (!useddecimal) {
k++;
}
while ("0" <= st && st <= "9" && k <= str.length) {
st = str.slice(k, k + 1);
k++;
}
}
}
if ((integ && k > 1) || k > 2) {
st = str.slice(0, k - 1);
tagst = "mn";
}
else {
k = 2;
st = str.slice(0, 1); //take 1 character
tagst = (("A" > st || st > "Z") && ("a" > st || st > "z")) ? "mo" : "mi";
}
if (st == "-" && str.charAt(1) !== ' ' && AMserver.AMpreviousSymbol == INFIX) {
AMserver.AMcurrentSymbol = INFIX; //trick "/" into recognizing "-" on second parse
return { input: st, tag: tagst, output: st == "-" ? "\u2212" : st, ttype: UNARY, func: true };
}
return { input: st, tag: tagst, output: st == "-" ? "\u2212" : st, ttype: CONST };
},
AMremoveBrackets: (node) => {
let st;
// inserted lots of ! overrides because if hasChildNodes() is true then firstChild and lastChild must exist
if (!node.hasChildNodes()) {
return;
}
if (node.firstChild.hasChildNodes() && (node.nodeName == "mrow" || node.nodeName == "M:MROW")) {
if (node.firstChild.nextSibling && node.firstChild.nextSibling.nodeName == "mtable") {
return;
}
st = node.firstChild.firstChild.nodeValue;
if (st == "(" || st == "[" || st == "{")
node.removeChild(node.firstChild);
}
if (node.lastChild.hasChildNodes() && (node.nodeName == "mrow" || node.nodeName == "M:MROW")) {
st = node.lastChild.firstChild.nodeValue;
if (st == ")" || st == "]" || st == "}") {
node.removeChild(node.lastChild);
}
}
},
AMparseSexpr: (str) => {
let symbol, node, result, i, st; // rightvert = false,
str = AMserver.AMremoveCharsAndBlanks(str, 0);
symbol = AMserver.AMgetSymbol(str); //either a token or a bracket or empty
if (symbol == null || symbol.ttype == RIGHTBRACKET && AMserver.AMnestingDepth > 0) {
return [AMserver.createTextNode(' '), str]; // a bit of a hack, can't return null anymore
}
let newFrag = AMserver.createDocumentFragment();
if (symbol.ttype == DEFINITION) {
str = symbol.output + AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
symbol = AMserver.AMgetSymbol(str);
}
switch (symbol.ttype) {
case UNDEROVER:
case CONST:
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
if (symbol.tag === 'mspace') {
node = AMserver.createMmlNode(symbol.tag);
node.setAttribute("width", symbol.output + "em");
return [node, str];
}
else {
return [AMserver.createMmlNode(symbol.tag, //its a constant
AMserver.createTextNode(symbol.output)), str];
}
case LEFTBRACKET: //read (expr+)
AMserver.AMnestingDepth++;
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
result = AMserver.AMparseExpr(str, true);
AMserver.AMnestingDepth--;
if (typeof symbol.invisible == "boolean" && symbol.invisible)
node = AMserver.createMmlNode("mrow", result[0]);
else {
node = AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.output));
node = AMserver.createMmlNode("mrow", node);
node.appendChild(result[0]);
}
return [node, result[1]];
case TEXT:
if (symbol != AMquote)
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
if (str.charAt(0) == "{")
i = str.indexOf("}");
else if (str.charAt(0) == "(")
i = str.indexOf(")");
else if (str.charAt(0) == "[")
i = str.indexOf("]");
else if (symbol == AMquote)
i = str.slice(1).indexOf("\"") + 1;
else
i = 0;
if (i == -1)
i = str.length;
st = str.slice(1, i);
if (symbol.input === 'mspace') { // special case
let m = st.match(/^(-?[\d\.]+)\s*(em|mu)?$/);
if (!m) {
st = "0em";
}
else if (!m[2] || m[2] == "mu") {
st = (parseInt(m[1]) / 16) + "em";
}
node = AMserver.createMmlNode(symbol.tag);
node.setAttribute("width", st);
str = AMserver.AMremoveCharsAndBlanks(str, i + 1);
return [node, str];
}
if (st.charAt(0) == " ") {
node = AMserver.createMmlNode("mspace");
node.setAttribute("width", "1ex");
newFrag.appendChild(node);
}
newFrag.appendChild(AMserver.createMmlNode(symbol.tag, AMserver.createTextNode(st)));
if (st.charAt(st.length - 1) == " ") {
node = AMserver.createMmlNode("mspace");
node.setAttribute("width", "1ex");
newFrag.appendChild(node);
}
str = AMserver.AMremoveCharsAndBlanks(str, i + 1);
return [AMserver.createMmlNode("mrow", newFrag), str];
case UNARYUNDEROVER:
case UNARY:
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
result = AMserver.AMparseSexpr(str);
if (result[0] == null) {
if (symbol.tag == "mi" || symbol.tag == "mo") {
return [AMserver.createMmlNode(symbol.tag, AMserver.createTextNode(symbol.output)), str];
}
else {
result[0] = AMserver.createMmlNode("mi");
}
}
if (typeof symbol.func == "boolean" && symbol.func) { // functions hack
st = str.charAt(0);
if (st == "^" || st == "_" || st == "/" || st == "|" || st == AMserver.listseparator ||
(symbol.input.length == 1 && symbol.input.match(/\w/) && st != "(")) {
return [AMserver.createMmlNode(symbol.tag, AMserver.createTextNode(symbol.output)), str];
}
else {
node = AMserver.createMmlNode("mrow", AMserver.createMmlNode(symbol.tag, AMserver.createTextNode(symbol.output)));
node.appendChild(result[0]);
return [node, result[1]];
}
}
AMserver.AMremoveBrackets(result[0]);
if (symbol.input == "sqrt") { // sqrt
return [AMserver.createMmlNode(symbol.tag, result[0]), result[1]];
}
else if (typeof symbol.rewriteleftright != "undefined") { // abs, floor, ceil
node = AMserver.createMmlNode("mrow", AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.rewriteleftright[0])));
node.appendChild(result[0]);
node.appendChild(AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.rewriteleftright[1])));
return [node, result[1]];
}
else if (symbol.input == "cancel") { // cancel
node = AMserver.createMmlNode(symbol.tag, result[0]);
node.style += AMserver.cancelStyle(AMserver.cancelColor);
return [node, result[1]];
}
else if (typeof symbol.acc == "boolean" && symbol.acc) { // accent
node = AMserver.createMmlNode(symbol.tag, result[0]);
if (symbol.tag == 'mover' && symbol.ttype == UNARY) {
node.setAttribute("accent", "true");
}
else if (symbol.tag == 'munder' && symbol.ttype == UNARY) {
node.setAttribute("accentunder", "true");
}
let accnode = AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.output));
if (symbol.input == "vec" && ((result[0].nodeName == "mrow" && result[0].childNodes.length == 1
&& result[0].firstChild.firstChild.nodeValue !== null
&& result[0].firstChild.firstChild.nodeValue.length == 1) ||
(result[0].firstChild && result[0].firstChild.nodeValue !== null
&& result[0].firstChild.nodeValue.length == 1))) {
// special case of single character base for vector accent,
// where stretchy can make it look bad
accnode.setAttribute("stretchy", false);
}
else {
accnode.setAttribute("stretchy", true);
}
node.appendChild(accnode);
return [node, result[1]];
}
else if (symbol.input == "bold") {
result[0].style += "font-weight:bold;";
return [result[0], result[1]];
}
else if (symbol.input == "italic") {
result[0].style += "font-style: italic;";
return [result[0], result[1]];
}
else { // font change command
if (typeof symbol.codes === 'string') {
AMserver.AMmapChars(result[0], symbol.codes, symbol.input);
}
return [result[0], result[1]];
}
case BINARY:
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
result = AMserver.AMparseSexpr(str);
if (result[0] == null)
return [AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.input)), str];
AMserver.AMremoveBrackets(result[0]);
let result2 = AMserver.AMparseSexpr(result[1]);
if (result2[0] == null)
return [AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.input)), str];
AMserver.AMremoveBrackets(result2[0]);
if (['color', 'class', 'id'].indexOf(symbol.input) >= 0) {
// Get the second argument
if (str.charAt(0) == "{")
i = str.indexOf("}");
else if (str.charAt(0) == "(")
i = str.indexOf(")");
else if (str.charAt(0) == "[")
i = str.indexOf("]");
st = str.slice(1, i);
// Make a mathml node
node = AMserver.createMmlNode(symbol.tag, result2[0]);
if (symbol.input === "color")
node.setAttribute("mathcolor", st);
else if (symbol.input === "class")
node.setAttribute("class", st);
else if (symbol.input === "id")
node.setAttribute("id", st);
return [node, result2[1]];
}
if (symbol.input == "root" || symbol.output == "stackrel")
newFrag.appendChild(result2[0]);
newFrag.appendChild(result[0]);
if (symbol.input == "frac")
newFrag.appendChild(result2[0]);
return [AMserver.createMmlNode(symbol.tag, newFrag), result2[1]];
case INFIX:
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
return [AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.output)), str];
case SPACE:
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
node = AMserver.createMmlNode("mspace");
node.setAttribute("width", "1ex");
newFrag.appendChild(node);
newFrag.appendChild(AMserver.createMmlNode(symbol.tag, AMserver.createTextNode(symbol.output)));
node = AMserver.createMmlNode("mspace");
node.setAttribute("width", "1ex");
newFrag.appendChild(node);
return [AMserver.createMmlNode("mrow", newFrag), str];
case LEFTRIGHT:
// if (rightvert) return [null,str]; else rightvert = true;
AMserver.AMnestingDepth++;
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
result = AMserver.AMparseExpr(str, false);
AMserver.AMnestingDepth--;
st = "";
if (result[0].lastChild != null)
st = result[0].lastChild.firstChild.nodeValue;
if (st == "|" && str.charAt(0) !== AMserver.listseparator) { // its an absolute value subterm
node = AMserver.createMmlNode("mo", AMserver.createTextNode(symbol.output));
node = AMserver.createMmlNode("mrow", node);
node.appendChild(result[0]);
return [node, result[1]];
}
else { // the "|" is a \mid so use unicode 2223 (divides) for spacing
node = AMserver.createMmlNode("mo", AMserver.createTextNode("\u2223"));
node = AMserver.createMmlNode("mrow", node);
return [node, str];
}
default:
//alert("default");
str = AMserver.AMremoveCharsAndBlanks(str, symbol.input.length);
return [AMserver.createMmlNode(symbol.tag, //its a constant
AMserver.createTextNode(symbol.output)), str];
}
},
// walks a node, and maps characters according to codemap
AMmapChars: (node, variant, inputsym) => {
let tag = '';
let codemap = codemaps[variant];
if (!codemap[2] && inputsym.substring(0, 2) == 'bb') {
// bold but variant doesn't have symbol; use codepoint from bb codemap instead
codemap[2] = codemaps['bold'][2];
}
let remap = codemap[5] || {};
if (node.tagName) {
tag = node.tagName.toUpperCase();
}
if (tag == "MI" || tag == "MO" || tag == "MN" || tag == "MTEXT") {
if (AMserver.addmathvariant) {
node.setAttribute("mathvariant", variant);
}
let st = node.firstChild.nodeValue.toString();
let newst = "";
let didmap, charcode;
let map; // { [key: string]: any[] };
for (let j = 0; j < st.length; j++) {
didmap = false;
charcode = st.charCodeAt(j);
for (let k = 0; k < 5; k++) {
if (!codemap[k]) {
continue;
}
map = codemapranges[k][2] || {};
if (map[charcode]) {
newst += String.fromCodePoint(map[charcode] - codemapranges[k][0] + codemap[k]);
didmap = true;
break;
}
else if (charcode >= codemapranges[k][0] && charcode <= codemapranges[k][1]) {
newst += String.fromCodePoint(remap[charcode] || charcode - codemapranges[k][0] + codemap[k]);
didmap = true;
break;
}
}