├── .gitignore ├── KaTeX ├── auto-render.min.js ├── fonts │ ├── KaTeX_AMS-Regular.eot │ ├── KaTeX_AMS-Regular.ttf │ ├── KaTeX_AMS-Regular.woff │ ├── KaTeX_AMS-Regular.woff2 │ ├── KaTeX_Caligraphic-Bold.eot │ ├── KaTeX_Caligraphic-Bold.ttf │ ├── KaTeX_Caligraphic-Bold.woff │ ├── KaTeX_Caligraphic-Bold.woff2 │ ├── KaTeX_Caligraphic-Regular.eot │ ├── KaTeX_Caligraphic-Regular.ttf │ ├── KaTeX_Caligraphic-Regular.woff │ ├── KaTeX_Caligraphic-Regular.woff2 │ ├── KaTeX_Fraktur-Bold.eot │ ├── KaTeX_Fraktur-Bold.ttf │ ├── KaTeX_Fraktur-Bold.woff │ ├── KaTeX_Fraktur-Bold.woff2 │ ├── KaTeX_Fraktur-Regular.eot │ ├── KaTeX_Fraktur-Regular.ttf │ ├── KaTeX_Fraktur-Regular.woff │ ├── KaTeX_Fraktur-Regular.woff2 │ ├── KaTeX_Main-Bold.eot │ ├── KaTeX_Main-Bold.ttf │ ├── KaTeX_Main-Bold.woff │ ├── KaTeX_Main-Bold.woff2 │ ├── KaTeX_Main-Italic.eot │ ├── KaTeX_Main-Italic.ttf │ ├── KaTeX_Main-Italic.woff │ ├── KaTeX_Main-Italic.woff2 │ ├── KaTeX_Main-Regular.eot │ ├── KaTeX_Main-Regular.ttf │ ├── KaTeX_Main-Regular.woff │ ├── KaTeX_Main-Regular.woff2 │ ├── KaTeX_Math-BoldItalic.eot │ ├── KaTeX_Math-BoldItalic.ttf │ ├── KaTeX_Math-BoldItalic.woff │ ├── KaTeX_Math-BoldItalic.woff2 │ ├── KaTeX_Math-Italic.eot │ ├── KaTeX_Math-Italic.ttf │ ├── KaTeX_Math-Italic.woff │ ├── KaTeX_Math-Italic.woff2 │ ├── KaTeX_Math-Regular.eot │ ├── KaTeX_Math-Regular.ttf │ ├── KaTeX_Math-Regular.woff │ ├── KaTeX_Math-Regular.woff2 │ ├── KaTeX_SansSerif-Bold.eot │ ├── KaTeX_SansSerif-Bold.ttf │ ├── KaTeX_SansSerif-Bold.woff │ ├── KaTeX_SansSerif-Bold.woff2 │ ├── KaTeX_SansSerif-Italic.eot │ ├── KaTeX_SansSerif-Italic.ttf │ ├── KaTeX_SansSerif-Italic.woff │ ├── KaTeX_SansSerif-Italic.woff2 │ ├── KaTeX_SansSerif-Regular.eot │ ├── KaTeX_SansSerif-Regular.ttf │ ├── KaTeX_SansSerif-Regular.woff │ ├── KaTeX_SansSerif-Regular.woff2 │ ├── KaTeX_Script-Regular.eot │ ├── KaTeX_Script-Regular.ttf │ ├── KaTeX_Script-Regular.woff │ ├── KaTeX_Script-Regular.woff2 │ ├── KaTeX_Size1-Regular.eot │ ├── KaTeX_Size1-Regular.ttf │ ├── KaTeX_Size1-Regular.woff │ ├── KaTeX_Size1-Regular.woff2 │ ├── KaTeX_Size2-Regular.eot │ ├── KaTeX_Size2-Regular.ttf │ ├── KaTeX_Size2-Regular.woff │ ├── KaTeX_Size2-Regular.woff2 │ ├── KaTeX_Size3-Regular.eot │ ├── KaTeX_Size3-Regular.ttf │ ├── KaTeX_Size3-Regular.woff │ ├── KaTeX_Size3-Regular.woff2 │ ├── KaTeX_Size4-Regular.eot │ ├── KaTeX_Size4-Regular.ttf │ ├── KaTeX_Size4-Regular.woff │ ├── KaTeX_Size4-Regular.woff2 │ ├── KaTeX_Typewriter-Regular.eot │ ├── KaTeX_Typewriter-Regular.ttf │ ├── KaTeX_Typewriter-Regular.woff │ └── KaTeX_Typewriter-Regular.woff2 ├── katex.min.css └── katex.min.js ├── LICENSE ├── MathJax ├── MathJax.js ├── config │ ├── AM_CHTML-full.js │ ├── AM_CHTML.js │ ├── AM_HTMLorMML-full.js │ ├── AM_HTMLorMML.js │ ├── AM_SVG-full.js │ ├── AM_SVG.js │ ├── Accessible-full.js │ ├── Accessible.js │ ├── MML_CHTML-full.js │ ├── MML_CHTML.js │ ├── MML_HTMLorMML-full.js │ ├── MML_HTMLorMML.js │ ├── MML_SVG-full.js │ ├── MML_SVG.js │ ├── MMLorHTML.js │ ├── Safe.js │ ├── TeX-AMS-MML_HTMLorMML-full.js │ ├── TeX-AMS-MML_HTMLorMML.js │ ├── TeX-AMS-MML_SVG-full.js │ ├── TeX-AMS-MML_SVG.js │ ├── TeX-AMS_CHTML-full.js │ ├── TeX-AMS_CHTML.js │ ├── TeX-AMS_HTML-full.js │ ├── TeX-AMS_HTML.js │ ├── TeX-AMS_SVG-full.js │ ├── TeX-AMS_SVG.js │ ├── TeX-MML-AM_CHTML-full.js │ ├── TeX-MML-AM_CHTML.js │ ├── TeX-MML-AM_HTMLorMML-full.js │ ├── TeX-MML-AM_HTMLorMML.js │ ├── TeX-MML-AM_SVG-full.js │ ├── TeX-MML-AM_SVG.js │ ├── default.js │ └── local │ │ └── local.js ├── extensions │ ├── AssistiveMML.js │ ├── CHTML-preview.js │ ├── FontWarnings.js │ ├── HTML-CSS │ │ └── handle-floats.js │ ├── HelpDialog.js │ ├── MatchWebFonts.js │ ├── MathEvents.js │ ├── MathML │ │ ├── content-mathml.js │ │ └── mml3.js │ ├── MathMenu.js │ ├── MathZoom.js │ ├── Safe.js │ ├── TeX │ │ ├── AMScd.js │ │ ├── AMSmath.js │ │ ├── AMSsymbols.js │ │ ├── HTML.js │ │ ├── action.js │ │ ├── autobold.js │ │ ├── autoload-all.js │ │ ├── bbox.js │ │ ├── begingroup.js │ │ ├── boldsymbol.js │ │ ├── cancel.js │ │ ├── color.js │ │ ├── enclose.js │ │ ├── extpfeil.js │ │ ├── mathchoice.js │ │ ├── mediawiki-texvc.js │ │ ├── mhchem.js │ │ ├── mhchem3 │ │ │ └── mhchem.js │ │ ├── newcommand.js │ │ ├── noErrors.js │ │ ├── noUndefined.js │ │ ├── unicode.js │ │ └── verb.js │ ├── a11y │ │ ├── accessibility-menu.js │ │ ├── auto-collapse.js │ │ ├── collapsible.js │ │ ├── explorer.js │ │ ├── invalid_keypress.mp3 │ │ ├── invalid_keypress.ogg │ │ ├── mathjax-sre.js │ │ ├── mathmaps │ │ │ ├── functions │ │ │ │ ├── algebra.js │ │ │ │ ├── elementary.js │ │ │ │ ├── hyperbolic.js │ │ │ │ └── trigonometry.js │ │ │ ├── mathmaps_ie.js │ │ │ ├── symbols │ │ │ │ ├── greek-capital.js │ │ │ │ ├── greek-mathfonts.js │ │ │ │ ├── greek-scripts.js │ │ │ │ ├── greek-small.js │ │ │ │ ├── greek-symbols.js │ │ │ │ ├── hebrew_letters.js │ │ │ │ ├── latin-lower-double-accent.js │ │ │ │ ├── latin-lower-normal.js │ │ │ │ ├── latin-lower-phonetic.js │ │ │ │ ├── latin-lower-single-accent.js │ │ │ │ ├── latin-mathfonts.js │ │ │ │ ├── latin-rest.js │ │ │ │ ├── latin-upper-double-accent.js │ │ │ │ ├── latin-upper-normal.js │ │ │ │ ├── latin-upper-single-accent.js │ │ │ │ ├── math_angles.js │ │ │ │ ├── math_arrows.js │ │ │ │ ├── math_characters.js │ │ │ │ ├── math_delimiters.js │ │ │ │ ├── math_digits.js │ │ │ │ ├── math_geometry.js │ │ │ │ ├── math_harpoons.js │ │ │ │ ├── math_non_characters.js │ │ │ │ ├── math_symbols.js │ │ │ │ ├── math_whitespace.js │ │ │ │ └── other_stars.js │ │ │ └── units │ │ │ │ ├── energy.js │ │ │ │ ├── length.js │ │ │ │ ├── memory.js │ │ │ │ ├── other.js │ │ │ │ ├── speed.js │ │ │ │ ├── temperature.js │ │ │ │ ├── time.js │ │ │ │ ├── volume.js │ │ │ │ └── weight.js │ │ ├── semantic-enrich.js │ │ └── wgxpath.install.js │ ├── asciimath2jax.js │ ├── fast-preview.js │ ├── jsMath2jax.js │ ├── mml2jax.js │ ├── tex2jax.js │ └── toMathML.js ├── jax │ ├── element │ │ └── mml │ │ │ ├── jax.js │ │ │ └── optable │ │ │ ├── Arrows.js │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── CombDiactForSymbols.js │ │ │ ├── Dingbats.js │ │ │ ├── GeneralPunctuation.js │ │ │ ├── GeometricShapes.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── Latin1Supplement.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── MathOperators.js │ │ │ ├── MiscMathSymbolsA.js │ │ │ ├── MiscMathSymbolsB.js │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ ├── MiscTechnical.js │ │ │ ├── SpacingModLetters.js │ │ │ ├── SuppMathOperators.js │ │ │ ├── SupplementalArrowsA.js │ │ │ └── SupplementalArrowsB.js │ ├── input │ │ ├── AsciiMath │ │ │ ├── config.js │ │ │ └── jax.js │ │ ├── MathML │ │ │ ├── config.js │ │ │ ├── entities │ │ │ │ ├── a.js │ │ │ │ ├── b.js │ │ │ │ ├── c.js │ │ │ │ ├── d.js │ │ │ │ ├── e.js │ │ │ │ ├── f.js │ │ │ │ ├── fr.js │ │ │ │ ├── g.js │ │ │ │ ├── h.js │ │ │ │ ├── i.js │ │ │ │ ├── j.js │ │ │ │ ├── k.js │ │ │ │ ├── l.js │ │ │ │ ├── m.js │ │ │ │ ├── n.js │ │ │ │ ├── o.js │ │ │ │ ├── opf.js │ │ │ │ ├── p.js │ │ │ │ ├── q.js │ │ │ │ ├── r.js │ │ │ │ ├── s.js │ │ │ │ ├── scr.js │ │ │ │ ├── t.js │ │ │ │ ├── u.js │ │ │ │ ├── v.js │ │ │ │ ├── w.js │ │ │ │ ├── x.js │ │ │ │ ├── y.js │ │ │ │ └── z.js │ │ │ └── jax.js │ │ └── TeX │ │ │ ├── config.js │ │ │ └── jax.js │ └── output │ │ ├── CommonHTML │ │ ├── autoload │ │ │ ├── annotation-xml.js │ │ │ ├── maction.js │ │ │ ├── menclose.js │ │ │ ├── mglyph.js │ │ │ ├── mmultiscripts.js │ │ │ ├── ms.js │ │ │ ├── mtable.js │ │ │ └── multiline.js │ │ ├── config.js │ │ ├── fonts │ │ │ └── TeX │ │ │ │ ├── AMS-Regular.js │ │ │ │ ├── Caligraphic-Bold.js │ │ │ │ ├── Fraktur-Bold.js │ │ │ │ ├── Fraktur-Regular.js │ │ │ │ ├── Main-Bold.js │ │ │ │ ├── Math-BoldItalic.js │ │ │ │ ├── SansSerif-Bold.js │ │ │ │ ├── SansSerif-Italic.js │ │ │ │ ├── SansSerif-Regular.js │ │ │ │ ├── Script-Regular.js │ │ │ │ ├── Typewriter-Regular.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ └── jax.js │ │ ├── HTML-CSS │ │ ├── autoload │ │ │ ├── annotation-xml.js │ │ │ ├── maction.js │ │ │ ├── menclose.js │ │ │ ├── mglyph.js │ │ │ ├── mmultiscripts.js │ │ │ ├── ms.js │ │ │ ├── mtable.js │ │ │ └── multiline.js │ │ ├── blank.gif │ │ ├── config.js │ │ ├── fonts │ │ │ ├── Asana-Math │ │ │ │ ├── Alphabets │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── DoubleStruck │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Latin │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Misc │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Monospace │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size6 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── Gyre-Pagella │ │ │ │ ├── Alphabets │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── DoubleStruck │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Latin │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Misc │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Monospace │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size6 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── Gyre-Termes │ │ │ │ ├── Alphabets │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── DoubleStruck │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Latin │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Misc │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Monospace │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size6 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── Latin-Modern │ │ │ │ ├── Alphabets │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── DoubleStruck │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Latin │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Misc │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Monospace │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size6 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size7 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── Neo-Euler │ │ │ │ ├── Alphabets │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── STIX-Web │ │ │ │ ├── Alphabets │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Arrows │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── DoubleStruck │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Latin │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Marks │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Misc │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Monospace │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Normal │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Operators │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Script │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Shapes │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Size5 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Symbols │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ ├── STIX │ │ │ │ ├── General │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ └── ij.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ ├── BlockElements.js │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CJK.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── Fraktur.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ ├── Hiragana.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSS.js │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ ├── MathTT.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── Specials.js │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ ├── SupplementalArrowsB.js │ │ │ │ │ │ └── ij.js │ │ │ │ ├── IntegralsD │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsSm │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUp │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUpD │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUpSm │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ ├── SizeFiveSym │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeFourSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeOneSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeThreeSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeTwoSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-1.0.js │ │ │ │ ├── fontdata-beta.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ └── TeX │ │ │ │ ├── AMS │ │ │ │ └── Regular │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BBBold.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── PUA.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ ├── Caligraphic │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ ├── Bold │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── Other.js │ │ │ │ │ └── PUA.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── Other.js │ │ │ │ │ └── PUA.js │ │ │ │ ├── Greek │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ ├── Bold │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ ├── Italic │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ ├── Math │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Italic │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ ├── Bold │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Italic │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Typewriter │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── WinChrome │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── WinIE6 │ │ │ │ └── Regular │ │ │ │ │ ├── AMS.js │ │ │ │ │ ├── Bold.js │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ ├── imageFonts.js │ │ └── jax.js │ │ ├── NativeMML │ │ ├── config.js │ │ └── jax.js │ │ ├── PlainSource │ │ ├── config.js │ │ └── jax.js │ │ ├── PreviewHTML │ │ ├── config.js │ │ └── jax.js │ │ └── SVG │ │ ├── autoload │ │ ├── annotation-xml.js │ │ ├── maction.js │ │ ├── menclose.js │ │ ├── mglyph.js │ │ ├── mmultiscripts.js │ │ ├── ms.js │ │ ├── mtable.js │ │ └── multiline.js │ │ ├── config.js │ │ ├── fonts │ │ ├── Asana-Math │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Gyre-Pagella │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Gyre-Termes │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Latin-Modern │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size7 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Neo-Euler │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── STIX-Web │ │ │ ├── Alphabets │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Italic │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ └── TeX │ │ │ ├── AMS │ │ │ └── Regular │ │ │ │ ├── Arrows.js │ │ │ │ ├── BoxDrawing.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Dingbats.js │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── PUA.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ └── SuppMathOperators.js │ │ │ ├── Caligraphic │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ ├── Main │ │ │ ├── Bold │ │ │ │ ├── Arrows.js │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ ├── SuppMathOperators.js │ │ │ │ └── SupplementalArrowsA.js │ │ │ ├── Italic │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ └── SuppMathOperators.js │ │ │ ├── Math │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ └── Italic │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Italic │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Script │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Typewriter │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ └── jax.js ├── latest.js └── localization │ ├── ar │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ar.js │ ├── ast │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ast.js │ ├── bcc │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── bcc.js │ ├── bg │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── bg.js │ ├── br │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── br.js │ ├── ca │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ca.js │ ├── cdo │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── cdo.js │ ├── ce │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ce.js │ ├── cs │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── cs.js │ ├── cy │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── cy.js │ ├── da │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── da.js │ ├── de │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── de.js │ ├── diq │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── diq.js │ ├── en │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── en.js │ ├── eo │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── eo.js │ ├── es │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── es.js │ ├── fa │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── fa.js │ ├── fi │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── fi.js │ ├── fr │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── fr.js │ ├── gl │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── gl.js │ ├── he │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── he.js │ ├── ia │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ia.js │ ├── it │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── it.js │ ├── ja │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ja.js │ ├── kn │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── kn.js │ ├── ko │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ko.js │ ├── lb │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── lb.js │ ├── lki │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── lki.js │ ├── lt │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── lt.js │ ├── mk │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── mk.js │ ├── nl │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── nl.js │ ├── oc │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── oc.js │ ├── pl │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── pl.js │ ├── pt-br │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── pt-br.js │ ├── pt │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── pt.js │ ├── qqq │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── qqq.js │ ├── ru │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── ru.js │ ├── scn │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── scn.js │ ├── sco │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── sco.js │ ├── sk │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── sk.js │ ├── sl │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── sl.js │ ├── sv │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── sv.js │ ├── th │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── th.js │ ├── tr │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── tr.js │ ├── uk │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── uk.js │ ├── vi │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── vi.js │ ├── zh-hans │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── zh-hans.js │ └── zh-hant │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── zh-hant.js ├── Plugin.php ├── README.md └── README_en.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_AMS-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_AMS-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Bold.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Bold.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Bold.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Italic.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-BoldItalic.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Italic.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Math-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Math-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Bold.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Italic.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Script-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Script-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size1-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size1-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size2-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size2-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size3-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size3-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size4-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size4-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Typewriter-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Typewriter-Regular.eot -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /KaTeX/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/KaTeX/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /MathJax/config/AM_CHTML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_CHTML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/AsciiMath","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_CHTML-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/AM_CHTML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_CHTML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/AsciiMath","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_CHTML.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/AM_HTMLorMML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_HTMLorMML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_HTMLorMML-full.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/AM_HTMLorMML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_HTMLorMML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_HTMLorMML.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/AM_SVG-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_SVG-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/AsciiMath","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_SVG-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/AM_SVG.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/AM_SVG.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/AsciiMath","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/AM_SVG.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/Accessible-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/Accessible-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"], 20 | menuSettings: { 21 | zoom: "Double-Click", 22 | mpContext: true, 23 | mpMouse: true 24 | }, 25 | errorSettings: { 26 | message: ["[",["MathError","Math Error"],"]"] 27 | } 28 | }); 29 | 30 | MathJax.Ajax.loadComplete("[MathJax]/config/Accessible-full.js"); 31 | -------------------------------------------------------------------------------- /MathJax/config/Accessible.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/Accessible.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"], 20 | menuSettings: { 21 | zoom: "Double-Click", 22 | mpContext: true, 23 | mpMouse: true 24 | }, 25 | errorSettings: { 26 | message: ["[",["MathError","Math Error"],"]"] 27 | } 28 | }); 29 | 30 | MathJax.Ajax.loadComplete("[MathJax]/config/Accessible.js"); 31 | -------------------------------------------------------------------------------- /MathJax/config/MML_CHTML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_CHTML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/MathML","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_CHTML-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/MML_CHTML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_CHTML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/MathML","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_CHTML.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/MML_HTMLorMML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_HTMLorMML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_HTMLorMML-full.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/MML_HTMLorMML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_HTMLorMML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_HTMLorMML.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/MML_SVG-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_SVG-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/MathML","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_SVG-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/MML_SVG.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/MML_SVG.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/MathML","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/MML_SVG.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS-MML_HTMLorMML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS-MML_HTMLorMML-full.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS-MML_HTMLorMML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS-MML_HTMLorMML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS-MML_HTMLorMML.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS-MML_SVG-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS-MML_SVG-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS-MML_SVG-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS-MML_SVG.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS-MML_SVG.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS-MML_SVG.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_CHTML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_CHTML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_CHTML-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_CHTML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_CHTML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_CHTML.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_HTML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_HTML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/HTML-CSS","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_HTML-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_HTML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_HTML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/HTML-CSS","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_HTML.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_SVG-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_SVG-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_SVG-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-AMS_SVG.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-AMS_SVG.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-AMS_SVG.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_CHTML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_CHTML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_CHTML-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_CHTML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_CHTML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/CommonHTML","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_CHTML.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_HTMLorMML-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_HTMLorMML-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_HTMLorMML-full.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_HTMLorMML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_HTMLorMML.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | config: ["MMLorHTML.js"], 18 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 19 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML","output/PreviewHTML"] 20 | }); 21 | 22 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_HTMLorMML.js"); 23 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_SVG-full.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_SVG-full.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_SVG-full.js"); 22 | -------------------------------------------------------------------------------- /MathJax/config/TeX-MML-AM_SVG.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * /MathJax/unpacked/config/TeX-MML-AM_SVG.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Part of the MathJax library. 8 | * See http://www.mathjax.org for details. 9 | * 10 | * Licensed under the Apache License, Version 2.0; 11 | * you may not use this file except in compliance with the License. 12 | * 13 | * http://www.apache.org/licenses/LICENSE-2.0 14 | */ 15 | 16 | MathJax.Hub.Config({ 17 | extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathEvents.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js","fast-preview.js","AssistiveMML.js","[a11y]/accessibility-menu.js"], 18 | jax: ["input/TeX","input/MathML","input/AsciiMath","output/SVG","output/PreviewHTML"] 19 | }); 20 | 21 | MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_SVG.js"); 22 | -------------------------------------------------------------------------------- /MathJax/extensions/CHTML-preview.js: -------------------------------------------------------------------------------- 1 | /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ 2 | /* vim: set ts=2 et sw=2 tw=80: */ 3 | 4 | /************************************************************* 5 | * 6 | * MathJax/extensions/CHTML-preview.js 7 | * 8 | * Backward compatibility with old CHTML-preview extension. 9 | * 10 | * --------------------------------------------------------------------- 11 | * 12 | * Copyright (c) 2014-2017 The MathJax Consortium 13 | * 14 | * Licensed under the Apache License, Version 2.0 (the "License"); 15 | * you may not use this file except in compliance with the License. 16 | * You may obtain a copy of the License at 17 | * 18 | * http://www.apache.org/licenses/LICENSE-2.0 19 | * 20 | * Unless required by applicable law or agreed to in writing, software 21 | * distributed under the License is distributed on an "AS IS" BASIS, 22 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 23 | * See the License for the specific language governing permissions and 24 | * limitations under the License. 25 | */ 26 | 27 | MathJax.Callback.Queue( 28 | ["Require",MathJax.Ajax,"[MathJax]/extensions/fast-preview.js"], 29 | ["loadComplete",MathJax.Ajax,"[MathJax]/extensions/CHTML-preview.js"] 30 | ); 31 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/invalid_keypress.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/MathJax/extensions/a11y/invalid_keypress.mp3 -------------------------------------------------------------------------------- /MathJax/extensions/a11y/invalid_keypress.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/MathJax/extensions/a11y/invalid_keypress.ogg -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/functions/algebra.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "Algebra", 3 | "mappings": { 4 | "default": { 5 | "default": "degree" 6 | } 7 | }, 8 | "key": "deg", 9 | "names": ["deg"] 10 | }, 11 | {"category": "Algebra", 12 | "mappings": { 13 | "default": { 14 | "default": "determinant", 15 | "short": "det" 16 | } 17 | }, 18 | "key": "det", 19 | "names": ["det"] 20 | }, 21 | {"category": "Algebra", 22 | "mappings": { 23 | "default": { 24 | "default": "dimension" 25 | } 26 | }, 27 | "key": "dim", 28 | "names": ["dim"] 29 | }, 30 | {"category": "Algebra", 31 | "mappings": { 32 | "default": { 33 | "default": "homomorphism", 34 | "short": "hom" 35 | } 36 | }, 37 | "key": "hom", 38 | "names": ["hom", "Hom"] 39 | }, 40 | {"category": "Algebra", 41 | "mappings": { 42 | "default": { 43 | "default": "kernel" 44 | } 45 | }, 46 | "key": "ker", 47 | "names": ["ker"] 48 | }, 49 | {"category": "Algebra", 50 | "mappings": { 51 | "default": { 52 | "default": "trace" 53 | } 54 | }, 55 | "key": "Tr", 56 | "names": ["Tr", "tr"] 57 | } 58 | ] 59 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/symbols/hebrew_letters.js: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "category": "Lo", 4 | "mappings": { 5 | "default": { 6 | "default": "alef symbol", 7 | "alternative": "first transfinite cardinal", 8 | "short": "alef" 9 | } 10 | }, 11 | "key": "2135" 12 | }, 13 | { 14 | "category": "Lo", 15 | "mappings": { 16 | "default": { 17 | "default": "bet symbol", 18 | "alternative": "second transfinite cardinal", 19 | "short": "bet" 20 | } 21 | }, 22 | "key": "2136" 23 | }, 24 | { 25 | "category": "Lo", 26 | "mappings": { 27 | "default": { 28 | "default": "gimel symbol", 29 | "alternative": "third transfinite cardinal", 30 | "short": "gimel" 31 | } 32 | }, 33 | "key": "2137" 34 | }, 35 | { 36 | "category": "Lo", 37 | "mappings": { 38 | "default": { 39 | "default": "dalet symbol", 40 | "alternative": "fourth transfinite cardinal", 41 | "short": "dalet" 42 | } 43 | }, 44 | "key": "2138" 45 | } 46 | ] -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/units/memory.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "", 3 | "mappings": { 4 | "default": { 5 | "default": "bits" 6 | } 7 | }, 8 | "key": "b", 9 | "names": ["b"] 10 | }, 11 | {"category": "", 12 | "mappings": { 13 | "default": { 14 | "default": "bytes" 15 | } 16 | }, 17 | "key": "B", 18 | "names": ["B"] 19 | }, 20 | {"category": "", 21 | "mappings": { 22 | "default": { 23 | "default": "kilobytes" 24 | } 25 | }, 26 | "key": "KB", 27 | "names": ["KB"] 28 | }, 29 | {"category": "", 30 | "mappings": { 31 | "default": { 32 | "default": "megabytes" 33 | } 34 | }, 35 | "key": "MB", 36 | "names": ["MB"] 37 | }, 38 | {"category": "", 39 | "mappings": { 40 | "default": { 41 | "default": "gigabytes" 42 | } 43 | }, 44 | "key": "GB", 45 | "names": ["GB"] 46 | }, 47 | {"category": "", 48 | "mappings": { 49 | "default": { 50 | "default": "terabytes" 51 | } 52 | }, 53 | "key": "TB", 54 | "names": ["TB"] 55 | } 56 | ] 57 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/units/other.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "", 3 | "mappings": { 4 | "default": { 5 | "default": "dozen" 6 | } 7 | }, 8 | "key": "doz", 9 | "names": ["doz", "doz."] 10 | }, 11 | {"category": "", 12 | "mappings": { 13 | "default": { 14 | "default": "square" 15 | } 16 | }, 17 | "key": "sq", 18 | "names": ["sq", "sq."] 19 | }, 20 | {"category": "", 21 | "mappings": { 22 | "default": { 23 | "default": "hectare" 24 | } 25 | }, 26 | "key": "ha", 27 | "names": ["ha"] 28 | } 29 | ] 30 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/units/speed.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "", 3 | "mappings": { 4 | "default": { 5 | "default": "knot" 6 | } 7 | }, 8 | "key": "kt", 9 | "names": ["kt", "kt."] 10 | }, 11 | {"category": "", 12 | "mappings": { 13 | "default": { 14 | "default": "miles per hour" 15 | } 16 | }, 17 | "key": "mph", 18 | "names": ["mph"] 19 | }, 20 | {"category": "", 21 | "mappings": { 22 | "default": { 23 | "default": "revolutions per minute" 24 | } 25 | }, 26 | "key": "rpm", 27 | "names": ["rpm"] 28 | }, 29 | {"category": "", 30 | "mappings": { 31 | "default": { 32 | "default": "kilometers per hour" 33 | } 34 | }, 35 | "key": "kmh", 36 | "names": ["kmh"] 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/units/temperature.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "", 3 | "mappings": { 4 | "default": { 5 | "default": "Fahrenheit" 6 | } 7 | }, 8 | "key": "F", 9 | "names": ["F", "F.", "\u00B0F"] 10 | }, 11 | {"category": "", 12 | "mappings": { 13 | "default": { 14 | "default": "Celsius", 15 | "alternative": "Centigrade" 16 | } 17 | }, 18 | "key": "C", 19 | "names": ["C", "\u00B0C"] 20 | }, 21 | {"category": "", 22 | "mappings": { 23 | "default": { 24 | "default": "Kelvin" 25 | } 26 | }, 27 | "key": "K", 28 | "names": ["K", "\u00B0K"] 29 | } 30 | 31 | ] 32 | -------------------------------------------------------------------------------- /MathJax/extensions/a11y/mathmaps/units/time.js: -------------------------------------------------------------------------------- 1 | [ 2 | {"category": "time", 3 | "mappings": { 4 | "default": { 5 | "default": "nanoseconds" 6 | } 7 | }, 8 | "key": "ns", 9 | "names": ["ns"] 10 | }, 11 | {"category": "time", 12 | "mappings": { 13 | "default": { 14 | "default": "microseconds" 15 | } 16 | }, 17 | "key": "µs", 18 | "names": ["µs"] 19 | }, 20 | {"category": "time", 21 | "mappings": { 22 | "default": { 23 | "default": "milliseconds" 24 | } 25 | }, 26 | "key": "ms", 27 | "names": ["ms"] 28 | }, 29 | {"category": "time", 30 | "mappings": { 31 | "default": { 32 | "default": "seconds" 33 | } 34 | }, 35 | "key": "s", 36 | "names": ["s"] 37 | }, 38 | {"category": "time", 39 | "mappings": { 40 | "default": { 41 | "default": "minutes" 42 | } 43 | }, 44 | "key": "min", 45 | "names": ["min"] 46 | }, 47 | {"category": "time", 48 | "mappings": { 49 | "default": { 50 | "default": "hours" 51 | } 52 | }, 53 | "key": "h", 54 | "names": ["h", "hr"] 55 | } 56 | ] 57 | -------------------------------------------------------------------------------- /MathJax/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/CombDiacritMarks.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u0311': MO.ACCENT // combining inverted breve 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiacritMarks.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /MathJax/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u20DB': MO.ACCENT, // combining three dots above 29 | '\u20DC': MO.ACCENT // combining four dots above 30 | } 31 | } 32 | }); 33 | 34 | MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiactForSymbols.js"); 35 | 36 | })(MathJax.ElementJax.mml); 37 | -------------------------------------------------------------------------------- /MathJax/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/GreekAndCoptic.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | infix: { 28 | '\u03F6': MO.REL // greek reversed lunate epsilon symbol 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/GreekAndCoptic.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /MathJax/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u00B0': MO.ORD, // degree sign 29 | '\u00B4': MO.ACCENT, // acute accent 30 | '\u00B8': MO.ACCENT // cedilla 31 | } 32 | } 33 | }); 34 | 35 | MathJax.Ajax.loadComplete(MML.optableDir+"/Latin1Supplement.js"); 36 | 37 | })(MathJax.ElementJax.mml); 38 | -------------------------------------------------------------------------------- /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/MiscSymbolsAndArrows.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | infix: { 28 | '\u2B45': MO.RELSTRETCH, // leftwards quadruple arrow 29 | '\u2B46': MO.RELSTRETCH // rightwards quadruple arrow 30 | } 31 | } 32 | }); 33 | 34 | MathJax.Ajax.loadComplete(MML.optableDir+"/MiscSymbolsAndArrows.js"); 35 | 36 | })(MathJax.ElementJax.mml); 37 | -------------------------------------------------------------------------------- /MathJax/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/j.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'Jcirc': '\u0134', 24 | 'Jcy': '\u0419', 25 | 'Jsercy': '\u0408', 26 | 'Jukcy': '\u0404', 27 | 'jcirc': '\u0135', 28 | 'jcy': '\u0439', 29 | 'jsercy': '\u0458', 30 | 'jukcy': '\u0454' 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/j.js"); 34 | 35 | })(MathJax.InputJax.MathML); 36 | -------------------------------------------------------------------------------- /MathJax/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/k.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'KHcy': '\u0425', 24 | 'KJcy': '\u040C', 25 | 'Kappa': '\u039A', 26 | 'Kcedil': '\u0136', 27 | 'Kcy': '\u041A', 28 | 'kcedil': '\u0137', 29 | 'kcy': '\u043A', 30 | 'kgreen': '\u0138', 31 | 'khcy': '\u0445', 32 | 'kjcy': '\u045C' 33 | }); 34 | 35 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/k.js"); 36 | 37 | })(MathJax.InputJax.MathML); 38 | -------------------------------------------------------------------------------- /MathJax/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/q.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'QUOT': '\u0022', 24 | 'qint': '\u2A0C', 25 | 'qprime': '\u2057', 26 | 'quaternions': '\u210D', 27 | 'quatint': '\u2A16', 28 | 'quest': '\u003F', 29 | 'questeq': '\u225F', 30 | 'quot': '\u0022' 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/q.js"); 34 | 35 | })(MathJax.InputJax.MathML); 36 | -------------------------------------------------------------------------------- /MathJax/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/w.js 4 | * 5 | * Copyright (c) 2010-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'Wcirc': '\u0174', 24 | 'wcirc': '\u0175', 25 | 'wedbar': '\u2A5F', 26 | 'wedge': '\u2227', 27 | 'wedgeq': '\u2259', 28 | 'wp': '\u2118', 29 | 'wr': '\u2240', 30 | 'wreath': '\u2240' 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/w.js"); 34 | 35 | })(MathJax.InputJax.MathML); 36 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerblue/AutoLaTeX/e7a09e84e7c025ddf0cb08588d64f4926717154d/MathJax/jax/output/HTML-CSS/blank.gif -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x2423: [31,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0xA792: [691,19,769,27,734] // ?? 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LatinExtendedD.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x266D: [740,5,437,86,389], // MUSIC FLAT SIGN 25 | 0x266E: [818,210,490,97,393], // MUSIC NATURAL SIGN 26 | 0x266F: [818,210,490,52,438] // MUSIC SHARP SIGN 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscSymbols.js"); 31 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x207F: [700,-275,491,15,478] // SUPERSCRIPT LATIN SMALL LETTER N 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/SuperAndSubscripts.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x20DD: [760,254,0,-753,256] // COMBINING ENCLOSING CIRCLE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/CombDiactForSymbols.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x2423: [31,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x2202: [686,10,559,44,559], // PARTIAL DIFFERENTIAL 25 | 0x2212: [297,-209,606,51,555] // MINUS SIGN 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathOperators.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x2423: [16,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x2202: [668,11,471,40,471], // PARTIAL DIFFERENTIAL 25 | 0x2212: [286,-220,675,86,590] // MINUS SIGN 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathOperators.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I 25 | 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ij.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x3012: [662,0,685,10,672], // POSTAL MARK 25 | 0x3030: [417,-93,1412,45,1367] // WAVY DASH 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CJK.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x2423: [16,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x306E: [661,41,901,37,840] // HIRAGANA LETTER NO 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Hiragana.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0xA727: [683,233,481,9,427], // stix-heng (phonetic symbol) 25 | 0xA792: [676,14,734,18,700] // ?? 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedD.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0xFFFD: [662,217,872,55,817] // REPLACEMENT CHARACTER 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Specials.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x207F: [676,-270,541,57,484] // SUPERSCRIPT LATIN SMALL LETTER N 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SuperAndSubscripts.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I 25 | 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ij.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/All.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/All.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-italic'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Italic/All.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Regular/All.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym-bold'], 23 | { 24 | 0x2140: [1500,-22,1341,60,1281] // DOUBLE-STRUCK N-ARY SUMMATION 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Bold/All.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x302: [845,-561,0,-2347,13], // COMBINING CIRCUMFLEX ACCENT 25 | 0x303: [899,-628,0,-2332,-3] // COMBINING TILDE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/CombDiacritMarks.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2713: [706,34,833,84,749], // CHECK MARK 25 | 0x2720: [716,22,833,48,786] // MALTESE CROSS 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Dingbats.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x24C8: [709,175,902,8,894] // CIRCLED LATIN CAPITAL LETTER S 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/EnclosedAlphanum.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2035: [560,-43,275,12,244] // REVERSED PRIME 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GeneralPunctuation.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x3DD: [605,85,778,55,719], // GREEK SMALL LETTER DIGAMMA 25 | 0x3F0: [434,6,667,37,734] // GREEK KAPPA SYMBOL 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GreekAndCoptic.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x127: [695,13,540,42,562] // LATIN SMALL LETTER H WITH STROKE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x29EB: [716,132,667,56,611] // BLACK LOZENGE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscMathSymbolsB.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2605: [694,111,944,49,895] // BLACK STAR 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscSymbols.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2322: [378,-122,778,55,722], // stix-small down curve 25 | 0x2323: [378,-143,778,55,722] // stix-small up curve 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscTechnical.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2C6: [845,-561,2333,-14,2346], // MODIFIER LETTER CIRCUMFLEX ACCENT 25 | 0x2DC: [899,-628,2333,1,2330] // SMALL TILDE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/SpacingModLetters.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0x2018: [708,-411,254,53,187], // LEFT SINGLE QUOTATION MARK 26 | 0x2019: [692,-394,254,58,193] // RIGHT SINGLE QUOTATION MARK 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/Other.js"); 31 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0x2018: [708,-410,215,45,158], // LEFT SINGLE QUOTATION MARK 26 | 0x2019: [692,-395,215,49,163] // RIGHT SINGLE QUOTATION MARK 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/Other.js"); 31 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x20D7: [723,-513,0,-542,-33] // COMBINING RIGHT ARROW ABOVE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/CombDiactForSymbols.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x131: [452,8,394,24,367] // LATIN SMALL LETTER DOTLESS I 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x237: [451,201,439,-12,420] // LATIN SMALL LETTER DOTLESS J 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedB.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x27E8: [750,249,447,127,382], // MATHEMATICAL LEFT ANGLE BRACKET 25 | 0x27E9: [750,249,447,64,319] // MATHEMATICAL RIGHT ANGLE BRACKET 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscMathSymbolsA.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/Latin1Supplement.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0x210F: [695,13,540,42,562] // stix-/hbar - Planck's over 2pi 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/LetterlikeSymbols.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x2DA: [715,-542,500,147,352] // RING ABOVE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/SpacingModLetters.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js 4 | * 5 | * Copyright (c) 2009-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Script'], 23 | { 24 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Script/Regular/Other.js"); 29 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/GeneralPunctuation.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | // REVERSED PRIME 25 | 0x2035: [560,-43,275,12,244,'12 501Q12 527 31 542T63 558Q73 560 77 560Q114 560 128 528Q133 518 188 293T244 61Q244 56 223 50T195 43Q192 43 190 45T102 263T14 486Q12 496 12 501'] 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeneralPunctuation.js"); 30 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur-bold'] = { 22 | directory: 'Fraktur/Bold', 23 | family: 'MathJax_Fraktur', 24 | id: 'MJFRAKB', 25 | weight: 'bold', 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xDFFF,"Other"], 29 | [0xE300,0xE310,"PUA"] 30 | ] 31 | 32 | 33 | }; 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Main.js"); 36 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Regular/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur'] = { 22 | directory: 'Fraktur/Regular', 23 | family: 'MathJax_Fraktur', 24 | id: 'MJFRAK', 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xDFFF,"Other"], 28 | [0xE300,0xE310,"PUA"] 29 | ] 30 | 31 | 32 | }; 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); 35 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Bold/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-bold'] = { 22 | directory: 'SansSerif/Bold', 23 | family: 'MathJax_SansSerif', 24 | id: 'MJSSB', 25 | weight: 'bold', 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xFFFF,"Other"], 29 | [0x300,0x36F,"CombDiacritMarks"] 30 | ] 31 | 32 | 33 | }; 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Main.js"); 36 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Italic/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-italic'] = { 22 | directory: 'SansSerif/Italic', 23 | family: 'MathJax_SansSerif', 24 | id: 'MJSSI', 25 | style: 'italic', 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xFFFF,"Other"], 29 | [0x300,0x36F,"CombDiacritMarks"] 30 | ] 31 | 32 | 33 | }; 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); 36 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Regular/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif'] = { 22 | directory: 'SansSerif/Regular', 23 | family: 'MathJax_SansSerif', 24 | id: 'MJSS', 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xFFFF,"Other"], 28 | [0x300,0x36F,"CombDiacritMarks"] 29 | ] 30 | 31 | 32 | }; 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); 35 | -------------------------------------------------------------------------------- /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/Main.js 4 | * 5 | * Copyright (c) 2011-2017 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Typewriter'] = { 22 | directory: 'Typewriter/Regular', 23 | family: 'MathJax_Typewriter', 24 | id: 'MJTT', 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xFFFF,"Other"], 28 | [0x300,0x36F,"CombDiacritMarks"] 29 | ] 30 | 31 | 32 | }; 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Main.js"); 35 | -------------------------------------------------------------------------------- /MathJax/localization/bcc/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bcc/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bcc","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bcc/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bcc/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bcc/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bcc","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bcc/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bcc/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bcc/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bcc","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bcc/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bcc/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bcc/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bcc","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bcc/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bcc/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bcc/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bcc","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bcc/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bg/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bg/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bg","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bg/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bg/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bg/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bg","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bg/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bg/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bg/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bg","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bg/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/bg/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/bg/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("bg","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/bg/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cdo/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cdo/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cdo","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ce/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ce/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ce","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ce/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/cy/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/cy/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("cy","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/cy/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/diq/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/diq/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("diq","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/diq/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/diq/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/diq/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("diq","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | LoadWebFont: "Web font %1 bar beno", 25 | CantLoadWebFont: "Font\u00EA web\u00EA %1'i bar n\u00EAb\u0131" 26 | } 27 | }); 28 | 29 | MathJax.Ajax.loadComplete("[MathJax]/localization/diq/HTML-CSS.js"); 30 | -------------------------------------------------------------------------------- /MathJax/localization/diq/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/diq/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("diq","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/diq/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/diq/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/diq/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("diq","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/diq/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/diq/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/diq/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("diq","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/diq/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/eo/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/eo/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("eo","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/eo/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/fi/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/fi/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("fi","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/fi/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/fi/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/fi/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("fi","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/fi/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/fi/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("fi","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/fi/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/fi/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("fi","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/fi/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/fi/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/fi/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("fi","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/fi/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/gl/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/gl/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("gl","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/gl/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/gl/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/gl/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("gl","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/gl/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/gl/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/gl/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("gl","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/gl/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/gl/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("gl","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/gl/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/gl/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("gl","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/gl/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ia/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ia/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ia","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ia/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ia/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ia/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ia","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ia/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ia/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ia","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ia/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ia/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ia","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ia/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/ko/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/ko/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("ko","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/ko/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/lb/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/lb/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("lb","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/lb/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/lb/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/lb/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("lb","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/lb/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/lb/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("lb","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/lb/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/lb/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("lb","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/lb/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/lb/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/lb/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("lb","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/lb/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/oc/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/oc/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("oc","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/oc/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/oc/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/oc/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("oc","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/oc/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/oc/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("oc","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/oc/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/oc/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("oc","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/oc/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/oc/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/oc/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("oc","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/oc/TeX.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/FontWarnings.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","FontWarnings",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/FontWarnings.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/HTML-CSS.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","HTML-CSS",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HTML-CSS.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/HelpDialog.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","HelpDialog",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HelpDialog.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/MathML.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/MathML.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","MathML",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathML.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/MathMenu.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/MathMenu.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","MathMenu",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathMenu.js"); 29 | -------------------------------------------------------------------------------- /MathJax/localization/tr/TeX.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/localization/tr/TeX.js 4 | * 5 | * Copyright (c) 2009-2016 The MathJax Consortium 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | MathJax.Localization.addTranslation("tr","TeX",{ 21 | version: "2.7.2", 22 | isLoaded: true, 23 | strings: { 24 | 25 | } 26 | }); 27 | 28 | MathJax.Ajax.loadComplete("[MathJax]/localization/tr/TeX.js"); 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AutoLaTeX 2 | 3 | [README in English](https://github.com/dreamerblue/AutoLaTeX/blob/master/README_en.md) 4 | 5 | ### 简介 6 | 7 | 自动渲染 LaTeX 公式。 8 | 9 | 可选的渲染方式: 10 | 11 | - KaTeX(默认) 12 | - MathJax 13 | 14 | 15 | ### 插件信息 16 | 17 | 作者:[bLue](https://dreamer.blue) 18 | 19 | 版本:0.1.0 20 | 21 | 语言支持:简体中文 22 | 23 | 更新日期:2018-02-27 24 | 25 | GitHub:[https://github.com/dreamerblue/AutoLaTeX](https://github.com/dreamerblue/AutoLaTeX) 26 | 27 | ### 使用方法 28 | 29 | 1. 建议从 [releases](https://github.com/dreamerblue/AutoLaTeX/releases) 下载插件,解压后将插件目录重命名为 `AutoLaTeX` 并复制到 Typecho 的 `usr/plugins/` 目录下。如已存在之前的版本,请删除后再执行复制 30 | 2. 在 Typecho 后台中启用插件。如需切换渲染方式请到 Typecho 后台插件设置中修改 31 | 32 | **提示**:由于 LaTeX 渲染相关资源文件数量较大,建议在服务器端进行解压。 33 | 34 | ### 开源协议 35 | 36 | [GPL-3.0](https://github.com/dreamerblue/AutoLaTeX/blob/master/LICENSE) 37 | 38 | -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- 1 | # AutoLaTeX 2 | 3 | [简体中文 README](https://github.com/dreamerblue/AutoLaTeX/blob/master/README.md) 4 | 5 | ### Intro 6 | 7 | Auto render LaTeX. 8 | 9 | Optional rendering method: 10 | 11 | - KaTeX (default) 12 | - MathJax 13 | 14 | 15 | ### Plugin Info 16 | 17 | Author: [bLue](https://dreamer.blue) 18 | 19 | Version: 0.1.0 20 | 21 | Language support: Simplified Chinese 22 | 23 | Update date: 2018-02-27 24 | 25 | GitHub: [https://github.com/dreamerblue/AutoLaTeX](https://github.com/dreamerblue/AutoLaTeX) 26 | 27 | ### How to use 28 | 29 | 1. Download from [releases](https://github.com/dreamerblue/AutoLaTeX/releases) and unarchive it. Then rename the plugin directory to `AutoLaTeX` and copy it to Typecho's `usr/plugins/` directory. If the old version existed, delete the old one first 30 | 2. Enable AutoLaTeX in Typecho Admin. If you want to custom rendering method, just change the plugin settings in Typecho Admin 31 | 32 | **Note**: Due to a large number of LaTeX rendering resource files, we recommend you unarchive it on server-side. 33 | 34 | ### License 35 | 36 | [GPL-3.0](https://github.com/dreamerblue/AutoLaTeX/blob/master/LICENSE) 37 | 38 | --------------------------------------------------------------------------------