This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.js
1173 lines (1133 loc) · 68.5 KB
/
main.js
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
const fs = require('fs');
const Concat = require('concat-with-sourcemaps');
const writeFile = require('write');
const uglify = require('uglify-js');
//
// CORE JAX
//
const core = [
'/jax/element/mml/jax.js',
'/jax/element/mml/optable/Arrows.js',
'/jax/element/mml/optable/MiscMathSymbolsA.js',
'/jax/element/mml/optable/Dingbats.js',
'/jax/element/mml/optable/GeneralPunctuation.js',
'/jax/element/mml/optable/SpacingModLetters.js',
'/jax/element/mml/optable/MiscTechnical.js',
'/jax/element/mml/optable/SupplementalArrowsA.js',
'/jax/element/mml/optable/GreekAndCoptic.js',
'/jax/element/mml/optable/LetterlikeSymbols.js',
'/jax/element/mml/optable/SupplementalArrowsB.js',
'/jax/element/mml/optable/BasicLatin.js',
'/jax/element/mml/optable/MiscSymbolsAndArrows.js',
'/jax/element/mml/optable/CombDiacritMarks.js',
'/jax/element/mml/optable/GeometricShapes.js',
'/jax/element/mml/optable/MathOperators.js',
'/jax/element/mml/optable/MiscMathSymbolsB.js',
'/jax/element/mml/optable/SuppMathOperators.js',
'/jax/element/mml/optable/CombDiactForSymbols.js',
'/jax/element/mml/optable/Latin1Supplement.js'
];
//
// INPUT JAXs
//
const input = {
TeX: [
'/jax/input/TeX/config.js',
'/jax/input/TeX/jax.js'
],
AsciiMath: [
'/jax/input/AsciiMath/config.js',
'/jax/input/AsciiMath/jax.js'
],
MathML: [
'/jax/input/MathML/config.js',
'/jax/input/MathML/jax.js',
'/jax/input/MathML/entities/scr.js',
'/jax/input/MathML/entities/opf.js',
'/jax/input/MathML/entities/z.js',
'/jax/input/MathML/entities/g.js',
'/jax/input/MathML/entities/r.js',
'/jax/input/MathML/entities/p.js',
'/jax/input/MathML/entities/m.js',
'/jax/input/MathML/entities/q.js',
'/jax/input/MathML/entities/t.js',
'/jax/input/MathML/entities/w.js',
'/jax/input/MathML/entities/f.js',
'/jax/input/MathML/entities/v.js',
'/jax/input/MathML/entities/e.js',
'/jax/input/MathML/entities/k.js',
'/jax/input/MathML/entities/x.js',
'/jax/input/MathML/entities/c.js',
'/jax/input/MathML/entities/n.js',
'/jax/input/MathML/entities/a.js',
'/jax/input/MathML/entities/j.js',
'/jax/input/MathML/entities/u.js',
'/jax/input/MathML/entities/b.js',
'/jax/input/MathML/entities/i.js',
'/jax/input/MathML/entities/l.js',
'/jax/input/MathML/entities/y.js',
'/jax/input/MathML/entities/fr.js',
'/jax/input/MathML/entities/o.js',
'/jax/input/MathML/entities/s.js',
'/jax/input/MathML/entities/d.js',
'/jax/input/MathML/entities/h.js',
]
}
//
// OUTPUT JAXs
//
const output = {
// SVG output processor
SVG: [
'/jax/output/SVG/config.js',
'/jax/output/SVG/jax.js',
'/jax/output/SVG/autoload/mtable.js',
'/jax/output/SVG/autoload/mglyph.js',
'/jax/output/SVG/autoload/mmultiscripts.js',
'/jax/output/SVG/autoload/annotation-xml.js',
'/jax/output/SVG/autoload/maction.js',
'/jax/output/SVG/autoload/multiline.js',
'/jax/output/SVG/autoload/menclose.js',
'/jax/output/SVG/autoload/ms.js',
],
// CommonHTML output processor
CommonHTML: [
'/jax/output/CommonHTML/config.js',
'/jax/output/CommonHTML/jax.js',
'/jax/output/CommonHTML/autoload/annotation-xml.js',
'/jax/output/CommonHTML/autoload/maction.js',
'/jax/output/CommonHTML/autoload/menclose.js',
'/jax/output/CommonHTML/autoload/mglyph.js',
'/jax/output/CommonHTML/autoload/mmultiscripts.js',
'/jax/output/CommonHTML/autoload/ms.js',
'/jax/output/CommonHTML/autoload/mtable.js',
'/jax/output/CommonHTML/autoload/multiline.js',
],
// Preview output processor
PreviewHTML: [
'/jax/output/PreviewHTML/config.js',
'/jax/output/PreviewHTML/jax.js'
],
// TODO support HTML-CSS
"HTML-CSS": [
'/jax/output/HTML-CSS/jax.js',
'/jax/output/HTML-CSS/config.js',
'/jax/output/HTML-CSS/autoload/annotation-xml.js',
'/jax/output/HTML-CSS/autoload/maction.js',
'/jax/output/HTML-CSS/autoload/menclose.js',
'/jax/output/HTML-CSS/autoload/mglyph.js',
'/jax/output/HTML-CSS/autoload/mmultiscripts.js',
'/jax/output/HTML-CSS/autoload/ms.js',
'/jax/output/HTML-CSS/autoload/mtable.js',
'/jax/output/HTML-CSS/autoload/multiline.js'
// NOTE not planning to support: imageFonts (which requires ~30,000 pngs)
// '/jax/output/HTML-CSS/imageFonts.js'
// '/jax/output/HTML-CSS/blank.gif' // (dependency of imageFonts.js)
]
}
//
// EXTENSIONS
//
const extensions = {
// default extensions
// WARNING: if you don't include them, you will need to configure MathJax to NOT load them
defaults: [
'/extensions/MathEvents.js',
'/extensions/MathZoom.js',
'/extensions/MathMenu.js',
'/extensions/toMathML.js',
'/extensions/HelpDialog.js',
],
// extensions for the TeX input
TeX: [
'/extensions/tex2jax.js',
'/extensions/TeX/AMScd.js',
'/extensions/TeX/AMSmath.js',
'/extensions/TeX/AMSsymbols.js',
'/extensions/TeX/HTML.js',
'/extensions/TeX/action.js',
'/extensions/TeX/autobold.js',
'/extensions/TeX/bbox.js',
'/extensions/TeX/boldsymbol.js',
'/extensions/TeX/cancel.js',
'/extensions/TeX/color.js',
'/extensions/TeX/enclose.js',
'/extensions/TeX/extpfeil.js',
'/extensions/TeX/mathchoice.js',
'/extensions/TeX/mediawiki-texvc.js',
'/extensions/TeX/mhchem.js',
'/extensions/TeX/newcommand.js',
'/extensions/TeX/unicode.js',
// '/extensions/TeX/autoload-all.js',
// '/extensions/TeX/begingroup.js',
// '/extensions/TeX/noErrors.js',
// '/extensions/TeX/noUndefined.js',
'/extensions/TeX/verb.js',
],
// extensions for the MathML input
// NOTE upstream bug when using content-mathml and mml3 simultaneously https://github.com/mathjax/MathJax/issues/1755
MathML: [
'/extensions/mml2jax.js',
'/extensions/MathML/content-mathml.js',
'/extensions/MathML/mml3.js'
],
// the accessibility extensions
a11y: [
// TODO What to do with the two audio files?
// 'extensions/a11y/invalid_keypress.mp3',
// 'extensions/a11y/invalid_keypress.ogg',
'extensions/a11y/accessibility-menu.js',
'extensions/a11y/auto-collapse.js',
'extensions/a11y/collapsible.js',
'extensions/a11y/explorer.js',
'extensions/a11y/mathjax-sre.js',
'extensions/a11y/mathmaps/functions/algebra.json',
'extensions/a11y/mathmaps/functions/elementary.json',
'extensions/a11y/mathmaps/functions/hyperbolic.json',
'extensions/a11y/mathmaps/functions/trigonometry.json',
'extensions/a11y/mathmaps/mathmaps_ie.js',
'extensions/a11y/mathmaps/symbols/greek-capital.json',
'extensions/a11y/mathmaps/symbols/greek-mathfonts.json',
'extensions/a11y/mathmaps/symbols/greek-scripts.json',
'extensions/a11y/mathmaps/symbols/greek-small.json',
'extensions/a11y/mathmaps/symbols/greek-symbols.json',
'extensions/a11y/mathmaps/symbols/hebrew_letters.json',
'extensions/a11y/mathmaps/symbols/latin-lower-double-accent.json',
'extensions/a11y/mathmaps/symbols/latin-lower-normal.json',
'extensions/a11y/mathmaps/symbols/latin-lower-phonetic.json',
'extensions/a11y/mathmaps/symbols/latin-lower-single-accent.json',
'extensions/a11y/mathmaps/symbols/latin-mathfonts.json',
'extensions/a11y/mathmaps/symbols/latin-rest.json',
'extensions/a11y/mathmaps/symbols/latin-upper-double-accent.json',
'extensions/a11y/mathmaps/symbols/latin-upper-normal.json',
'extensions/a11y/mathmaps/symbols/latin-upper-single-accent.json',
'extensions/a11y/mathmaps/symbols/math_angles.json',
'extensions/a11y/mathmaps/symbols/math_arrows.json',
'extensions/a11y/mathmaps/symbols/math_characters.json',
'extensions/a11y/mathmaps/symbols/math_delimiters.json',
'extensions/a11y/mathmaps/symbols/math_digits.json',
'extensions/a11y/mathmaps/symbols/math_geometry.json',
'extensions/a11y/mathmaps/symbols/math_harpoons.json',
'extensions/a11y/mathmaps/symbols/math_non_characters.json',
'extensions/a11y/mathmaps/symbols/math_symbols.json',
'extensions/a11y/mathmaps/symbols/math_whitespace.json',
'extensions/a11y/mathmaps/symbols/other_stars.json',
'extensions/a11y/mathmaps/units/energy.json',
'extensions/a11y/mathmaps/units/length.json',
'extensions/a11y/mathmaps/units/memory.json',
'extensions/a11y/mathmaps/units/other.json',
'extensions/a11y/mathmaps/units/speed.json',
'extensions/a11y/mathmaps/units/temperature.json',
'extensions/a11y/mathmaps/units/time.json',
'extensions/a11y/mathmaps/units/volume.json',
'extensions/a11y/mathmaps/units/weight.json',
'extensions/a11y/semantic-enrich.js',
'extensions/a11y/wgxpath.install.js'
],
// extensions for the HTML-CSS output
"HTML-CSS": [
'extensions/HTML-CSS/floats.js'
],
// other (less common) extensions
misc: [
'/extensions/MatchWebFonts.js',
'/extensions/AssistiveMML.js',
'/extensions/FontWarnings.js',
'/extensions/jsMath2jax.js',
'/extensions/fast-preview.js',
'/extensions/Safe.js'
]
}
// NOTE:
// NEVER needed:
// extensions/CHTML-preview.js
//
// FONTS
//
const fonts = {
// NOTE
// for each font, the files `fontdata.js` and `fontdata-extra.js` must be handled separately
// fonts for the CommonHTML output
// NOTE. the CommonHTML output currently only supports the default "TeX"" fonts
CommonHTML: {
TeX: [
'/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js',
'/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js',
'/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js',
'/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js',
// NOTE included in fontdata.js https://github.com/pkra/MathJax-single-file/pull/19#issuecomment-304392838
// '/jax/output/CommonHTML/fonts/TeX/Main-Bold.js',
'/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js',
'/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js',
'/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js',
'/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js',
'/jax/output/CommonHTML/fonts/TeX/Script-Regular.js',
'/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js'
]
},
// fonts for the SVG output
SVG: {
TeX: [
'/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js',
// NOTE: Main.js needs to come in front of all other fonts of a family
// Cf. https://github.com/pkra/MathJax-single-file/pull/19#issuecomment-304319246
'/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js',
'/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js',
'/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js',
'/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js',
'/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/Main.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js',
'/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/Main.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js',
'/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js',
// NOTE Handled by fontdata.js, cf. https://github.com/pkra/MathJax-single-file/pull/19#issuecomment-304319246
// '/jax/output/SVG/fonts/TeX/Main/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js',
'/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js',
'/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js',
// NOTE Handled by fontdata.js, cf. https://github.com/pkra/MathJax-single-file/pull/19#issuecomment-304319246
// '/jax/output/SVG/fonts/TeX/Math/Italic/Main.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js',
'/jax/output/SVG/fonts/TeX/Script/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js',
'/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js',
'/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js',
'/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js'
],
"STIX-Web": [
'/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js',
'/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js'
],
"Latin-Modern": [
'/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js'
],
"Asana-Math": [
'/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js'
],
"Gyre-Pagella": [
'/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js'
],
"Gyre-Termes": [
'/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js'
],
"Neo-Euler": [
'/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js',
'/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js'
]
},
"HTML-CSS": {
"Asana-Math": [
'/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js'
],
"Gyre-Pagella": [
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js'
],
"Gyre-Termes": [
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js'
],
"Latin-Modern": [
'/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js'
],
"Neo-Euler": [
'/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js'
],
// NOTE "STIX" means locally installed STIX fonts; you probably shouldn't use them -- see "STIX-Web" for webfonts
"STIX": [
// TODO check if these are needed in real life
// '/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js',
// '/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js',
'/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js',
'/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js',
'/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js',
// NOTE not needed, cf. https://github.com/pkra/MathJax-single-file/pull/19#issuecomment-304319246
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js',
// '/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js',
'/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js',
'/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js'
],
"STIX-Web": [
'/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js'
],
"TeX": ['/jax/output/HTML-CSS/fonts/TeX/fontdata.js',
'/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js',
'/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js',
'/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js',
'/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js',
'/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js',
'/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js',
'/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js',