├── .gitignore ├── README.md ├── R_examples ├── HDI.R ├── alot │ ├── alot_analysis.R │ └── alot_sim.R ├── nba │ ├── nba_data │ │ ├── nba_09-10.csv │ │ ├── nba_13-14.csv │ │ ├── nba_86-87.csv │ │ ├── nba_91-92.csv │ │ └── nba_92-93.csv │ └── nba_freethrows.R ├── prediction.R ├── randint.stan ├── randint2.stan └── shrinkage.R ├── ebio-brownbag ├── ALOT.png ├── alot_of_alots.png ├── bb_beamer.Rmd ├── bb_beamer.pdf └── freq.png ├── hierarchical_models.Rproj ├── qdt ├── HM2-figure │ ├── unnamed-chunk-1-1.png │ ├── unnamed-chunk-2-1.png │ ├── unnamed-chunk-3-1.png │ └── unnamed-chunk-5-1.png ├── HM2.Rpres ├── HM2.html ├── HM2.md └── HM2_files │ └── mathjax-23 │ ├── LICENSE │ ├── MathJax.js │ ├── config │ ├── MMLorHTML.js │ ├── Safe.js │ └── TeX-AMS-MML_HTMLorMML.js │ ├── extensions │ ├── FontWarnings.js │ ├── HTML-CSS │ │ └── handle-floats.js │ ├── HelpDialog.js │ ├── MatchWebFonts.js │ ├── MathEvents.js │ ├── MathML │ │ └── content-mathml.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 │ │ ├── mhchem.js │ │ ├── newcommand.js │ │ ├── noErrors.js │ │ ├── noUndefined.js │ │ ├── unicode.js │ │ └── verb.js │ ├── asciimath2jax.js │ ├── jsMath2jax.js │ ├── mml2jax.js │ ├── tex2jax.js │ └── toMathML.js │ ├── fonts │ └── HTML-CSS │ │ └── TeX │ │ └── otf │ │ ├── MathJax_AMS-Regular.otf │ │ ├── MathJax_Caligraphic-Bold.otf │ │ ├── MathJax_Caligraphic-Regular.otf │ │ ├── MathJax_Fraktur-Bold.otf │ │ ├── MathJax_Fraktur-Regular.otf │ │ ├── MathJax_Main-Bold.otf │ │ ├── MathJax_Main-Italic.otf │ │ ├── MathJax_Main-Regular.otf │ │ ├── MathJax_Math-BoldItalic.otf │ │ ├── MathJax_Math-Italic.otf │ │ ├── MathJax_Math-Regular.otf │ │ ├── MathJax_SansSerif-Bold.otf │ │ ├── MathJax_SansSerif-Italic.otf │ │ ├── MathJax_SansSerif-Regular.otf │ │ ├── MathJax_Script-Regular.otf │ │ ├── MathJax_Size1-Regular.otf │ │ ├── MathJax_Size2-Regular.otf │ │ ├── MathJax_Size3-Regular.otf │ │ ├── MathJax_Size4-Regular.otf │ │ ├── MathJax_Typewriter-Regular.otf │ │ ├── MathJax_WinChrome-Regular.otf │ │ └── MathJax_WinIE6-Regular.otf │ ├── images │ ├── CloseX-31.png │ └── MenuArrow-15.png │ ├── 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 │ │ ├── HTML-CSS │ │ ├── autoload │ │ │ ├── annotation-xml.js │ │ │ ├── maction.js │ │ │ ├── menclose.js │ │ │ ├── mglyph.js │ │ │ ├── mmultiscripts.js │ │ │ ├── ms.js │ │ │ ├── mtable.js │ │ │ └── multiline.js │ │ ├── config.js │ │ ├── fonts │ │ │ ├── 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 │ └── localization │ ├── br │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── br.js │ ├── cdo │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── cdo.js │ ├── cs │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── cs.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ └── zh-hans │ ├── FontWarnings.js │ ├── HTML-CSS.js │ ├── HelpDialog.js │ ├── MathML.js │ ├── MathMenu.js │ ├── TeX.js │ └── zh-hans.js └── recommended_reading ├── Gelman 2005.pdf ├── Gelman et al 2008.pdf ├── Gelman2006.pdf └── efron_morris_1977.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | 4 | # Example code in package build process 5 | *-Ex.R 6 | 7 | # R data files from past sessions 8 | .Rdata 9 | 10 | # RStudio files 11 | .Rproj.user/ 12 | .Rproj.user 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | hierarchical_models 2 | =================== 3 | 4 | Slideshow, papers, and example R scripts to demonstrate shrinkage/partial pooling and prediction in hieararchical models 5 | 6 | ### Slideshows 7 | - [QDT](https://github.com/mbjoseph/hierarchical_models/blob/master/qdt/HM2.Rpres) 8 | - [EBIO brown bag](https://github.com/mbjoseph/hierarchical_models/blob/master/ebio-brownbag/bb_beamer.pdf?raw=true) 9 | 10 | ### R examples 11 | - [Random intercept model in lme4: illustration of shrinkage/partial pooling](https://github.com/mbjoseph/hierarchical_models/blob/master/R_examples/shrinkage.R) 12 | - [Random intercept application: Bayesian ranking of NBA player freethrow shooting ability](https://github.com/mbjoseph/hierarchical_models/blob/master/R_examples/nba/nba_freethrows.R) 13 | - [Random intercept, random slope model application: blood parasites of Alots](https://github.com/mbjoseph/hierarchical_models/blob/master/R_examples/alot/alot_analysis.R) 14 | - [Bayesian conditional and marginal predictions for random intercept models in Stan](https://github.com/mbjoseph/hierarchical_models/blob/master/R_examples/prediction.R) 15 | -------------------------------------------------------------------------------- /R_examples/HDI.R: -------------------------------------------------------------------------------- 1 | ## convenience functions ## 2 | HDI <- function(values, percent=0.95){ 3 | sorted <- sort(values) 4 | index <- floor(percent * length(sorted)) 5 | nCI <- length(sorted) - index 6 | 7 | width <- rep(0, nCI) 8 | for (i in 1:nCI){ 9 | width[i] <- sorted[i + index] - sorted[i] 10 | } 11 | 12 | HDImin <- sorted[which.min(width)] 13 | HDImax <- sorted[which.min(width) + index] 14 | HDIlim <- c(HDImin, HDImax) 15 | return(HDIlim) 16 | } 17 | 18 | logit <- function(x){ 19 | log(x / (1 - x)) 20 | } 21 | 22 | antilogit <- function(x){ 23 | exp(x) / (1 + exp(x)) 24 | } 25 | -------------------------------------------------------------------------------- /R_examples/alot/alot_sim.R: -------------------------------------------------------------------------------- 1 | ### Simulating Alot blood parasite dataset 2 | J <- 25 # number of sites 3 | n_j <- round(runif(J, 2, 20)) 4 | individual <- NULL 5 | site <- NULL 6 | size <- NULL 7 | for (i in 1:length(n_j)){ 8 | individual <- c(individual, 1:n_j[i]) 9 | site <- c(site, rep(i, n_j[i])) 10 | size <- c(size, rexp(n_j[i], 1)) 11 | } 12 | d <- data.frame(individual=individual, 13 | site=paste("site", LETTERS[site]), 14 | body_size=size) 15 | 16 | # set up model parameters & simulate response 17 | mu_alpha <- 2 18 | sigma_beta <- 3 19 | mu_beta <- 3 20 | 21 | sigma_site <- 3 22 | sigma_y <- 3 23 | Sigma_sim <- matrix(c(sigma_site^2, 0, 24 | 0, sigma_beta^2), 25 | nrow=2) 26 | library(MASS) 27 | effs <- mvrnorm(J, mu=c(mu_alpha, mu_beta), 28 | Sigma = Sigma_sim) 29 | site_eff <- effs[, 1] 30 | beta_size <- effs[, 2] 31 | 32 | #plot(site_eff, beta_size, xlim=c(-10, 10), ylim=c(-10, 10)) 33 | 34 | mu <- beta_size[site] * size + site_eff[site] 35 | err <- rnorm(nrow(d), mean=0, sd=sigma_y) 36 | d$log_parasites <- mu + err 37 | 38 | -------------------------------------------------------------------------------- /R_examples/randint.stan: -------------------------------------------------------------------------------- 1 | 2 | data{ 3 | int N; 4 | real Y[N]; 5 | int K; 6 | int id[N]; 7 | real prior_sa; 8 | } 9 | parameters{ 10 | real sigma_Y; 11 | real sigma_alpha; 12 | real alpha[K]; 13 | real mu_alpha; 14 | } 15 | model{ 16 | # priors 17 | mu_alpha ~ normal(0, 100); 18 | sigma_Y ~ uniform(0, 100); 19 | sigma_alpha ~ cauchy(0, prior_sa); 20 | alpha ~ normal(mu_alpha, sigma_alpha); 21 | for (i in 1:N){ 22 | Y[i] ~ normal(alpha[id[i]], sigma_Y); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /R_examples/randint2.stan: -------------------------------------------------------------------------------- 1 | 2 | data{ 3 | int N; 4 | int FT[N]; 5 | int FTA[N]; 6 | real prior_sa; 7 | } 8 | parameters{ 9 | real sigma_alpha; 10 | vector[N] alphaR; 11 | real mu_alpha; 12 | } 13 | transformed parameters{ 14 | vector[N] alpha; 15 | // Matt trick ups efficiency 16 | alpha <- mu_alpha + sigma_alpha * alphaR; 17 | } 18 | model{ 19 | // priors 20 | mu_alpha ~ normal(0, 10); 21 | sigma_alpha ~ cauchy(0, prior_sa); 22 | // parameter model 23 | alphaR ~ normal(0, 1); // Matt trick 24 | // likelihood 25 | FT ~ binomial_logit(FTA, alpha); 26 | } 27 | -------------------------------------------------------------------------------- /ebio-brownbag/ALOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/ebio-brownbag/ALOT.png -------------------------------------------------------------------------------- /ebio-brownbag/alot_of_alots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/ebio-brownbag/alot_of_alots.png -------------------------------------------------------------------------------- /ebio-brownbag/bb_beamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/ebio-brownbag/bb_beamer.pdf -------------------------------------------------------------------------------- /ebio-brownbag/freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/ebio-brownbag/freq.png -------------------------------------------------------------------------------- /hierarchical_models.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /qdt/HM2-figure/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2-figure/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /qdt/HM2-figure/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2-figure/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /qdt/HM2-figure/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2-figure/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /qdt/HM2-figure/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2-figure/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/config/Safe.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/config/Safe.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Register.StartupHook("End Config",function(){if(!MathJax.Hub.config.extensions){MathJax.Hub.config.extensions=[]}MathJax.Hub.config.extensions.push("Safe.js")});MathJax.Ajax.loadComplete("[MathJax]/config/Safe.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/images/CloseX-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/images/CloseX-31.png -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/images/MenuArrow-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/qdt/HM2_files/mathjax-23/images/MenuArrow-15.png -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u0311":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiacritMarks.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u20DB":c.ACCENT,"\u20DC":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiactForSymbols.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Dingbats.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2772":c.OPEN},postfix:{"\u2773":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/Dingbats.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2016":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2018":[0,0,b.OPEN,{fence:true}],"\u201C":[0,0,b.OPEN,{fence:true}]},postfix:{"\u2016":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2019":[0,0,b.CLOSE,{fence:true}],"\u201D":[0,0,b.CLOSE,{fence:true}]}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeneralPunctuation.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u03F6":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/GreekAndCoptic.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u00B0":c.ORD,"\u00B4":c.ACCENT,"\u00B8":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Latin1Supplement.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2145":c.ORD21,"\u2146":[2,0,b.ORD]}}});MathJax.Ajax.loadComplete(a.optableDir+"/LetterlikeSymbols.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u27E6":c.OPEN,"\u27EA":c.OPEN,"\u27EC":c.OPEN},postfix:{"\u27E7":c.CLOSE,"\u27EB":c.CLOSE,"\u27ED":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsA.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u2B45":c.RELSTRETCH,"\u2B46":c.RELSTRETCH}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscSymbolsAndArrows.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u23B4":c.WIDEACCENT,"\u23B5":c.WIDEACCENT,"\u23DC":c.WIDEACCENT,"\u23DD":c.WIDEACCENT,"\u23E0":c.WIDEACCENT,"\u23E1":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscTechnical.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u02CD":c.WIDEACCENT,"\u02DA":c.ACCENT,"\u02DD":c.ACCENT,"\u02F7":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/SpacingModLetters.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/element/mml/optable/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u27F0":c.RELSTRETCH,"\u27F1":c.RELSTRETCH,"\u27FB":c.WIDEREL,"\u27FD":c.WIDEREL,"\u27FE":c.WIDEREL,"\u27FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsA.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/AsciiMath/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/AsciiMath/config.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.3",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/config.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.3",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/j.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Jcirc:"\u0134",Jcy:"\u0419",Jsercy:"\u0408",Jukcy:"\u0404",jcirc:"\u0135",jcy:"\u0439",jsercy:"\u0458",jukcy:"\u0454"});MathJax.Ajax.loadComplete(a.entityDir+"/j.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/k.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{KHcy:"\u0425",KJcy:"\u040C",Kappa:"\u039A",Kcedil:"\u0136",Kcy:"\u041A",kcedil:"\u0137",kcy:"\u043A",kgreen:"\u0138",khcy:"\u0445",kjcy:"\u045C"});MathJax.Ajax.loadComplete(a.entityDir+"/k.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/q.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{QUOT:"\u0022",qint:"\u2A0C",qprime:"\u2057",quaternions:"\u210D",quatint:"\u2A16",quest:"\u003F",questeq:"\u225F",quot:"\u0022"});MathJax.Ajax.loadComplete(a.entityDir+"/q.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/w.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",wedgeq:"\u2259",wp:"\u2118",wr:"\u2240",wreath:"\u2240"});MathJax.Ajax.loadComplete(a.entityDir+"/w.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/x.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",xhArr:"\u27FA",xharr:"\u27F7",xlArr:"\u27F8",xlarr:"\u27F5",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",xoplus:"\u2A01",xotime:"\u2A02",xrArr:"\u27F9",xrarr:"\u27F6",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0"});MathJax.Ajax.loadComplete(a.entityDir+"/x.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/y.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{YAcy:"\u042F",YIcy:"\u0407",YUcy:"\u042E",Yacute:"\u00DD",Ycirc:"\u0176",Ycy:"\u042B",Yuml:"\u0178",yacute:"\u00FD",yacy:"\u044F",ycirc:"\u0177",ycy:"\u044B",yicy:"\u0457",yucy:"\u044E",yuml:"\u00FF"});MathJax.Ajax.loadComplete(a.entityDir+"/y.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/z.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{ZHcy:"\u0416",Zacute:"\u0179",Zcaron:"\u017D",Zcy:"\u0417",Zdot:"\u017B",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zacute:"\u017A",zcaron:"\u017E",zcy:"\u0437",zdot:"\u017C",zeetrf:"\u2128",zhcy:"\u0436",zwj:"\u200D",zwnj:"\u200C"});MathJax.Ajax.loadComplete(a.entityDir+"/z.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{64256:[691,0,610,15,666],64257:[691,0,556,14,536],64258:[691,0,556,15,535],64259:[691,0,833,15,813],64260:[691,0,833,15,812]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{8355:[676,0,611,11,583],8356:[684,16,500,21,477],8359:[676,14,1369,16,1341],8364:[672,12,500,29,478]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9651:[811,127,1145,35,1110],9655:[791,284,1043,70,1008],9661:[811,127,1145,35,1110],9665:[791,284,1043,35,973],9674:[795,289,790,45,745],9708:[811,127,1145,35,1110]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{7808:[923,15,1000,19,981],7809:[713,14,722,23,707],7810:[923,15,1000,19,981],7811:[713,14,722,23,707],7812:[876,15,1000,19,981],7813:[666,14,722,23,707],7922:[923,0,722,15,699],7923:[713,205,500,16,482]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/LatinExtendedAdditional.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{42898:[691,19,769,27,734]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/LatinExtendedD.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{10184:[547,13,1025,62,943],10185:[547,13,1025,62,943],10216:[732,193,445,69,399],10217:[732,193,445,46,376]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/MiscMathSymbolsA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9837:[740,5,437,86,389],9838:[818,210,490,97,393],9839:[818,210,490,52,438]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{7424:[475,0,515,9,503],7431:[461,0,531,20,511],7452:[461,19,600,16,584]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/PhoneticExtensions.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{8319:[700,-275,491,15,478]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/SuperAndSubscripts.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{64256:[698,205,613,-169,726],64257:[703,205,556,-188,514],64258:[704,205,556,-186,553],64259:[703,205,856,-169,814],64260:[704,205,854,-169,851]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8413:[760,254,0,-753,256]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CombDiactForSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8355:[669,0,668,-13,661],8356:[683,12,500,-32,510],8359:[669,13,1229,-28,1173],8364:[681,17,562,34,546]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8706:[686,10,559,44,559],8722:[297,-209,606,51,555]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{64256:[678,207,527,-147,673],64257:[681,207,500,-141,481],64258:[682,204,500,-141,518],64259:[681,207,744,-147,725],64260:[682,207,745,-147,763]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8355:[653,0,611,8,645],8356:[670,8,500,10,517],8359:[653,13,1149,0,1126],8364:[664,12,500,16,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{7808:[880,18,833,71,906],7809:[664,18,667,15,648],7810:[876,18,833,71,906],7811:[664,18,667,15,648],7812:[818,18,833,71,906],7813:[606,18,667,15,648],7922:[880,0,556,78,633],7923:[664,206,444,-24,426]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/LatinExtendedAdditional.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8706:[668,11,471,40,471],8722:[286,-220,675,86,590]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ij.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{64256:[683,0,605,20,655],64257:[683,0,558,32,523],64258:[683,0,556,31,522],64259:[683,0,832,20,797],64260:[683,0,830,20,796]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{9600:[910,-304,1213,0,1213],9604:[303,303,1213,0,1213],9608:[910,303,1213,0,1213],9612:[910,303,1212,0,606],9616:[910,303,1212,606,1212],9617:[860,258,1200,0,1200],9618:[874,273,1200,0,1200],9619:[874,273,1200,0,1200]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/BlockElements.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12306:[662,0,685,10,672],12336:[417,-93,1412,45,1367]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CJK.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8355:[662,0,556,11,546],8356:[676,8,500,12,490],8359:[662,10,1182,16,1141],8364:[664,12,500,38,462]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12398:[661,41,901,37,840]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Hiragana.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{7808:[890,11,944,5,932],7809:[678,14,722,21,694],7810:[890,11,944,5,932],7811:[678,14,722,21,694],7812:[834,11,944,5,932],7813:[622,14,722,21,694],7922:[890,0,722,22,703],7923:[678,218,500,14,475]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/LatinExtendedAdditional.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{42791:[683,233,481,9,427],42898:[676,14,734,18,700]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/LatinExtendedD.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{65533:[662,217,872,55,817]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Specials.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8319:[676,-270,541,57,484]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/SuperAndSubscripts.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{10224:[662,156,1033,69,965],10225:[662,156,1033,69,965],10226:[626,116,974,54,882],10227:[626,116,974,92,920],10228:[569,61,1200,52,1147],10237:[551,45,1574,55,1519],10238:[551,45,1574,55,1519],10239:[449,-58,1574,55,1519]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/SupplementalArrowsA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ij.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsD={directory:"IntegralsD/Regular",family:"STIXIntegralsD",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[2000,269,585,56,1035],8750:[2000,269,635,56,1035]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsD");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsD/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsSm={directory:"IntegralsSm/Regular",family:"STIXIntegralsSm",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[690,189,496,41,552],8750:[690,189,560,41,552]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsSm");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsSm/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsUp={directory:"IntegralsUp/Regular",family:"STIXIntegralsUp",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[824,320,366,59,408],8750:[824,320,397,35,486]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUp");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsUp/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsUpD={directory:"IntegralsUpD/Regular",family:"STIXIntegralsUpD",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[2000,269,467,58,512],8750:[2000,269,616,56,685]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpD");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsUpD/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsUpSm={directory:"IntegralsUpSm/Regular",family:"STIXIntegralsUpSm",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[690,189,357,52,375],8750:[690,189,452,52,412]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpSm");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsUpSm/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Bold/All.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold"]={directory:"NonUnicode/Bold",family:"STIXNonUnicode",weight:"bold",Ranges:[[32,32,"All"],[160,160,"All"],[57344,63743,"PrivateUse"]]};MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Bold/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/BoldItalic/All.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold-italic"]={directory:"NonUnicode/BoldItalic",family:"STIXNonUnicode",weight:"bold",style:"italic",Ranges:[[32,32,"All"],[160,160,"All"],[57344,63743,"PrivateUse"]]};MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold-italic");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/BoldItalic/Main.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Italic/All.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXNonUnicode,{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/All.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXSizeOneSym-bold"],{8512:[1500,-22,1341,60,1281]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/SizeOneSym/Bold/All.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9484:[694,-306,500,55,444],9488:[694,-306,500,55,444],9492:[366,22,500,55,444],9496:[366,22,500,55,444],9585:[694,195,889,0,860],9586:[694,195,889,0,860]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/BoxDrawing.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{770:[845,-561,0,-2347,13],771:[899,-628,0,-2332,-3]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/CombDiacritMarks.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10003:[706,34,833,84,749],10016:[716,22,833,48,786]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Dingbats.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9416:[709,175,902,8,894]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/EnclosedAlphanum.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GeneralPunctuation.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9632:[689,0,778,55,722],9633:[689,0,778,55,722],9650:[575,20,722,84,637],9651:[575,20,722,84,637],9654:[539,41,778,83,694],9660:[576,19,722,84,637],9661:[576,19,722,84,637],9664:[539,41,778,83,694],9674:[716,132,667,56,611]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{989:[605,85,778,55,719],1008:[434,6,667,37,734]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GreekAndCoptic.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{160:[0,0,250,0,0],165:[683,0,750,11,738],174:[709,175,947,32,915],240:[749,21,556,42,509]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Latin1Supplement.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{295:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LatinExtendedA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8463:[695,13,540,42,562],8487:[684,22,722,44,675],8498:[695,1,556,55,497],8502:[763,21,667,-22,687],8503:[764,43,444,-22,421],8504:[764,43,667,54,640],8513:[705,23,639,37,577]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10731:[716,132,667,56,611]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscMathSymbolsB.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9733:[694,111,944,49,895]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8994:[378,-122,778,55,722],8995:[378,-143,778,55,722]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscTechnical.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{710:[845,-561,2333,-14,2346],732:[899,-628,2333,1,2330]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/SpacingModLetters.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"]={directory:"Fraktur/Bold",family:"MathJax_Fraktur",weight:"bold",testString:"MathJax Fraktur",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur-bold"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Main.js"]); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"],{160:[0,0,250,0,0],8216:[708,-411,254,53,187],8217:[692,-394,254,58,193]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Other.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"],{58113:[630,27,587,64,512],58114:[693,212,394,37,408],58115:[681,219,387,36,384],58116:[473,212,593,67,531],58117:[684,27,393,33,387],58120:[679,220,981,32,875],58121:[717,137,727,17,633]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/PUA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur={directory:"Fraktur/Regular",family:"MathJax_Fraktur",testString:"MathJax Fraktur",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"]); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur,{160:[0,0,250,0,0],8216:[708,-410,215,45,158],8217:[692,-395,215,49,163]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Other.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur,{58112:[683,32,497,75,430],58113:[616,30,498,35,432],58114:[680,215,333,29,339],58115:[679,224,329,28,318],58116:[471,214,503,52,449],58117:[686,20,333,26,315],58118:[577,21,334,29,347],58119:[475,22,501,10,514]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/PUA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8407:[723,-513,0,-542,-33]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/CombDiactForSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{9651:[711,-1,1022,69,953],9657:[540,39,575,33,542],9661:[500,210,1022,68,953],9667:[539,38,575,33,542],9711:[711,211,1150,65,1084]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{160:[0,0,250,0,0],168:[695,-535,575,96,478],172:[371,-61,767,64,702],175:[607,-540,575,80,494],176:[702,-536,575,160,414],177:[728,35,894,64,829],180:[706,-503,575,236,460],215:[530,28,894,168,726],247:[597,96,894,64,828]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/Latin1Supplement.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{305:[452,8,394,24,367]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LatinExtendedA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{567:[451,201,439,-12,420]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LatinExtendedB.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8463:[694,8,668,45,642],8465:[702,8,831,64,798],8467:[702,19,474,-1,446],8472:[461,210,740,72,726],8476:[711,16,831,42,824],8501:[694,0,703,64,638]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10216:[750,249,447,127,382],10217:[750,249,447,64,319]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscMathSymbolsA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{9824:[719,129,894,64,829],9825:[711,24,894,65,828],9826:[719,154,894,64,828],9827:[719,129,894,32,861],9837:[750,17,447,64,381],9838:[741,223,447,57,389],9839:[724,224,447,63,382]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8968:[750,248,511,194,493],8969:[750,248,511,17,317],8970:[749,248,511,194,493],8971:[749,248,511,17,317],8994:[405,-108,1150,65,1084],8995:[392,-126,1150,64,1085]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscTechnical.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10815:[686,0,900,39,860],10927:[696,199,894,96,797],10928:[697,199,894,96,797]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/SuppMathOperators.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10229:[518,17,1805,64,1741],10230:[518,17,1833,96,1773],10231:[518,17,2126,64,2061],10232:[547,46,1868,64,1804],10233:[547,46,1870,64,1804],10234:[547,46,2126,64,2060],10236:[518,17,1833,65,1773]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/SupplementalArrowsA.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8211:[285,-248,511,91,554],8212:[285,-248,1022,117,1038],8216:[694,-379,307,197,362],8217:[694,-379,307,213,377],8220:[694,-379,514,243,606],8221:[694,-379,514,176,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/GeneralPunctuation.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/Latin1Supplement.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8463:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9651:[716,0,889,59,828],9657:[505,5,500,26,474],9661:[500,215,889,59,828],9667:[505,5,500,26,473],9711:[715,215,1000,56,944]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9824:[727,130,778,55,723],9825:[716,33,778,55,723],9826:[727,162,778,55,723],9827:[726,130,778,28,750],9837:[750,22,389,55,332],9838:[734,223,389,65,324],9839:[723,223,389,55,333]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{730:[715,-542,500,147,352]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/SpacingModLetters.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_SansSerif={directory:"SansSerif/Regular",family:"MathJax_SansSerif",testString:"MathJax SansSerif ^ _",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_SansSerif"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"]); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Script,{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Other.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Typewriter={directory:"Typewriter/Regular",family:"MathJax_Typewriter",testString:"MathJax Typewriter |",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Typewriter"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Typewriter/Regular/Main.js"]); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/jax/output/NativeMML/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/NativeMML/config.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.NativeMML=MathJax.OutputJax({id:"NativeMML",version:"2.3",directory:MathJax.OutputJax.directory+"/NativeMML",extensionDir:MathJax.OutputJax.extensionDir+"/NativeMML",config:{matchFontHeight:true,scale:100,minScaleAdjust:50,styles:{"div.MathJax_MathML":{"text-align":"center",margin:".75em 0px"}}}});if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax.NativeMML.Register("jax/mml")}MathJax.OutputJax.NativeMML.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/br/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/br/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("br","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/br/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/br/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/br/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("br","HTML-CSS",{version:"2.3",isLoaded:true,strings:{LoadWebFont:"O karga\u00F1 ar font web %1",CantLoadWebFont:"Ne c'haller ket karga\u00F1 ar font web %1",CantFindFontUsing:"Ne c'haller ket kavout ur font dereat e-touez %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/br/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/br/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/br/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("br","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/br/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/br/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/br/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("br","MathML",{version:"2.3",isLoaded:true,strings:{BadMglyph:"mglyph fall : %1",BadMglyphFont:"Font fall : %1",UnknownNodeType:"Seurt skoulm dianav : %1",UnexpectedTextNode:"Skoulm testenn dic'hortoz : %1",ErrorParsingMathML:"Fazi o tielfenna\u00F1 MathML",ParsingError:"Fazi o ielfenna\u00F1 MathML : %1",MathMLSingleElement:"MathML a rank beza\u00F1 stummet gant un elfenn hepken"}});MathJax.Ajax.loadComplete("[MathJax]/localization/br/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cdo/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cdo/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cdo","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cs/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cs/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cs","HTML-CSS",{version:"2.3",isLoaded:true,strings:{LoadWebFont:"Na\u010D\u00EDt\u00E1 se web-font %1",CantLoadWebFont:"Nelze na\u010D\u00EDst web-font %1",FirefoxCantLoadWebFont:"Firefox nem\u016F\u017Ee na\u010D\u00EDtat web-fonty ze vzd\u00E1len\u00E9ho hostitele"}});MathJax.Ajax.loadComplete("[MathJax]/localization/cs/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cs/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cs/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cs","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cs/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/cs/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/cs/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("cs","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/cs/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/en/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/en/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("en","HTML-CSS",{version:"2.3",isLoaded:true,strings:{LoadWebFont:"Loading web-font %1",CantLoadWebFont:"Can't load web font %1",FirefoxCantLoadWebFont:"Firefox can't load web fonts from a remote host",CantFindFontUsing:"Can't find a valid font using %1",WebFontsNotAvailable:"Web-Fonts not available -- using image fonts instead"}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/eo/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/eo/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("eo","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/eo/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/es/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/es/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("es","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/es/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/es/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/es/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("es","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/es/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/es/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/es/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("es","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/es/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/es/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/es/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("es","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/es/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/es/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/es/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("es","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/es/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/fi/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/fi/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("fi","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/fi/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/fi/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/fi/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("fi","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/fi/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/fi/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("fi","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/fi/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/fi/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("fi","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/fi/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/fi/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/fi/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("fi","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/fi/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/gl/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/gl/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("gl","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/gl/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/gl/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/gl/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("gl","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/gl/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/gl/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/gl/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("gl","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/gl/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/gl/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("gl","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/gl/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/gl/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("gl","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/gl/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ia/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ia/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ia","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ia/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ia/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ia/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ia","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ia/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ia/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ia/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ia","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ia/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ia/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ia","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ia/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ia/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ia","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ia/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/it/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/it/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("it","HTML-CSS",{version:"2.3",isLoaded:true,strings:{LoadWebFont:"Caricamento web-font %1",CantLoadWebFont:"Impossibile caricare il web font %1",FirefoxCantLoadWebFont:"Firefox non pu\u00F2 scaricare i web font dal server remoto",CantFindFontUsing:"Impossibile trovare un font valido tra %1",WebFontsNotAvailable:"Web font non disponibili -- font immagini in uso"}});MathJax.Ajax.loadComplete("[MathJax]/localization/it/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ko/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ko/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ko","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ko/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ko/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ko/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ko","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ko/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ko/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ko/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ko","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ko/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ko/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ko/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ko","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ko/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ko/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ko/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ko","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ko/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/lb/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/lb/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("lb","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/lb/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/oc/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/oc/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("oc","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/oc/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/oc/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/oc/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("oc","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/oc/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/oc/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("oc","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/oc/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/oc/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("oc","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/oc/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/oc/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/oc/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("oc","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/oc/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ru/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ru/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ru","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ru/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ru/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ru/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ru","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ru/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ru/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ru/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ru","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ru/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ru/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ru/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ru","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ru/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/ru/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/ru/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("ru","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/ru/TeX.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/sv/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/sv/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("sv","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/sv/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/sv/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/sv/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("sv","HTML-CSS",{version:"2.3",isLoaded:true,strings:{FirefoxCantLoadWebFont:"Firefox kan inte l\u00E4sa in webbteckensnitt fr\u00E5n en fj\u00E4rrstyrd v\u00E4rd",CantFindFontUsing:"Kan inte hitta ett giltigt teckensnitt med %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/sv/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/sv/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/sv/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("sv","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/sv/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/sv/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/sv/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("sv","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/sv/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/FontWarnings.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/FontWarnings.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","FontWarnings",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/FontWarnings.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/HTML-CSS.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/HTML-CSS.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","HTML-CSS",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HTML-CSS.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/HelpDialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/HelpDialog.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","HelpDialog",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HelpDialog.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/MathML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/MathML.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","MathML",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathML.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/MathMenu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/MathMenu.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","MathMenu",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathMenu.js"); 20 | -------------------------------------------------------------------------------- /qdt/HM2_files/mathjax-23/localization/tr/TeX.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/localization/tr/TeX.js 3 | * 4 | * Copyright (c) 2009-2013 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Localization.addTranslation("tr","TeX",{version:"2.3",isLoaded:true,strings:{}});MathJax.Ajax.loadComplete("[MathJax]/localization/tr/TeX.js"); 20 | -------------------------------------------------------------------------------- /recommended_reading/Gelman 2005.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/recommended_reading/Gelman 2005.pdf -------------------------------------------------------------------------------- /recommended_reading/Gelman et al 2008.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/recommended_reading/Gelman et al 2008.pdf -------------------------------------------------------------------------------- /recommended_reading/Gelman2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/recommended_reading/Gelman2006.pdf -------------------------------------------------------------------------------- /recommended_reading/efron_morris_1977.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/hierarchical_models/996cc4994a014f4ccce0f03e14e564be64ed7a65/recommended_reading/efron_morris_1977.pdf --------------------------------------------------------------------------------