├── LICENSE ├── README.md ├── demo.md.html ├── markdeep-slides ├── lib │ ├── UPGRADE.md │ ├── markdeep-relative-sizes │ │ └── 1.11 │ │ │ └── relativize.css │ ├── markdeep │ │ └── 1.11 │ │ │ └── markdeep.min.js │ ├── mathjax │ │ └── 2.7.5 │ │ │ ├── LICENSE │ │ │ ├── MathJax.js │ │ │ ├── config │ │ │ └── TeX-MML-AM_SVG.js │ │ │ ├── extensions │ │ │ ├── AssistiveMML.js │ │ │ ├── CHTML-preview.js │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS │ │ │ │ └── handle-floats.js │ │ │ ├── HelpDialog.js │ │ │ ├── MatchWebFonts.js │ │ │ ├── MathEvents.js │ │ │ ├── MathML │ │ │ │ ├── content-mathml.js │ │ │ │ └── mml3.js │ │ │ ├── MathMenu.js │ │ │ ├── MathZoom.js │ │ │ ├── Safe.js │ │ │ ├── TeX │ │ │ │ ├── AMScd.js │ │ │ │ ├── AMSmath.js │ │ │ │ ├── AMSsymbols.js │ │ │ │ ├── HTML.js │ │ │ │ ├── action.js │ │ │ │ ├── autobold.js │ │ │ │ ├── autoload-all.js │ │ │ │ ├── bbox.js │ │ │ │ ├── begingroup.js │ │ │ │ ├── boldsymbol.js │ │ │ │ ├── cancel.js │ │ │ │ ├── color.js │ │ │ │ ├── enclose.js │ │ │ │ ├── extpfeil.js │ │ │ │ ├── mathchoice.js │ │ │ │ ├── mediawiki-texvc.js │ │ │ │ ├── mhchem.js │ │ │ │ ├── mhchem3 │ │ │ │ │ └── mhchem.js │ │ │ │ ├── newcommand.js │ │ │ │ ├── noErrors.js │ │ │ │ ├── noUndefined.js │ │ │ │ ├── unicode.js │ │ │ │ └── verb.js │ │ │ ├── asciimath2jax.js │ │ │ ├── fast-preview.js │ │ │ ├── jsMath2jax.js │ │ │ ├── mml2jax.js │ │ │ ├── tex2jax.js │ │ │ └── toMathML.js │ │ │ ├── jax │ │ │ ├── element │ │ │ │ └── mml │ │ │ │ │ ├── jax.js │ │ │ │ │ └── optable │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ └── SupplementalArrowsB.js │ │ │ ├── input │ │ │ │ ├── AsciiMath │ │ │ │ │ ├── config.js │ │ │ │ │ └── jax.js │ │ │ │ ├── MathML │ │ │ │ │ ├── config.js │ │ │ │ │ ├── entities │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── e.js │ │ │ │ │ │ ├── f.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ ├── h.js │ │ │ │ │ │ ├── i.js │ │ │ │ │ │ ├── j.js │ │ │ │ │ │ ├── k.js │ │ │ │ │ │ ├── l.js │ │ │ │ │ │ ├── m.js │ │ │ │ │ │ ├── n.js │ │ │ │ │ │ ├── o.js │ │ │ │ │ │ ├── opf.js │ │ │ │ │ │ ├── p.js │ │ │ │ │ │ ├── q.js │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ ├── s.js │ │ │ │ │ │ ├── scr.js │ │ │ │ │ │ ├── t.js │ │ │ │ │ │ ├── u.js │ │ │ │ │ │ ├── v.js │ │ │ │ │ │ ├── w.js │ │ │ │ │ │ ├── x.js │ │ │ │ │ │ ├── y.js │ │ │ │ │ │ └── z.js │ │ │ │ │ └── jax.js │ │ │ │ └── TeX │ │ │ │ │ ├── config.js │ │ │ │ │ └── jax.js │ │ │ └── output │ │ │ │ └── SVG │ │ │ │ ├── autoload │ │ │ │ ├── annotation-xml.js │ │ │ │ ├── maction.js │ │ │ │ ├── menclose.js │ │ │ │ ├── mglyph.js │ │ │ │ ├── mmultiscripts.js │ │ │ │ ├── ms.js │ │ │ │ ├── mtable.js │ │ │ │ └── multiline.js │ │ │ │ ├── config.js │ │ │ │ ├── fonts │ │ │ │ └── TeX │ │ │ │ │ ├── AMS │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── PUA.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ ├── Caligraphic │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Fraktur │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ └── PUA.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ └── PUA.js │ │ │ │ │ ├── Main │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── MathOperators.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ ├── Math │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Italic │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── SansSerif │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── Script │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size1 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size2 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size3 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Size4 │ │ │ │ │ └── Regular │ │ │ │ │ │ └── Main.js │ │ │ │ │ ├── Typewriter │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── Other.js │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ └── fontdata.js │ │ │ │ └── jax.js │ │ │ └── test │ │ │ ├── examples.html │ │ │ ├── index-images.html │ │ │ ├── index.html │ │ │ ├── localization.html │ │ │ ├── sample-all-at-once.html │ │ │ ├── sample-asciimath.html │ │ │ ├── sample-autoload.html │ │ │ ├── sample-dynamic-2.html │ │ │ ├── sample-dynamic-steps.html │ │ │ ├── sample-dynamic.html │ │ │ ├── sample-eqnum.html │ │ │ ├── sample-eqrefs.html │ │ │ ├── sample-loader-config.html │ │ │ ├── sample-loader.html │ │ │ ├── sample-macros.html │ │ │ ├── sample-mediawiki-texvc.html │ │ │ ├── sample-mml.html │ │ │ ├── sample-signals.html │ │ │ ├── sample-tex.html │ │ │ └── sample.html │ └── webfonts │ │ ├── ibm-plex-mono │ │ └── 2.0.0 │ │ │ ├── LICENSE.txt │ │ │ ├── complete │ │ │ ├── woff │ │ │ │ ├── IBMPlexMono-Italic.woff │ │ │ │ └── IBMPlexMono-Regular.woff │ │ │ └── woff2 │ │ │ │ ├── IBMPlexMono-Italic.woff2 │ │ │ │ └── IBMPlexMono-Regular.woff2 │ │ │ └── webfont.css │ │ ├── iosevka │ │ └── 2.3.1 │ │ │ ├── LICENSE.md │ │ │ ├── ttf │ │ │ ├── iosevka-bold.ttf │ │ │ ├── iosevka-bolditalic.ttf │ │ │ ├── iosevka-italic.ttf │ │ │ └── iosevka-regular.ttf │ │ │ ├── webfont.css │ │ │ ├── woff │ │ │ ├── iosevka-bold.woff │ │ │ ├── iosevka-bolditalic.woff │ │ │ ├── iosevka-italic.woff │ │ │ └── iosevka-regular.woff │ │ │ └── woff2 │ │ │ ├── iosevka-bold.woff2 │ │ │ ├── iosevka-bolditalic.woff2 │ │ │ ├── iosevka-italic.woff2 │ │ │ └── iosevka-regular.woff2 │ │ ├── libre-franklin │ │ └── 1.015 │ │ │ ├── OFL.txt │ │ │ ├── OTF │ │ │ ├── LibreFranklin-Black.otf │ │ │ ├── LibreFranklin-Bold.otf │ │ │ └── LibreFranklin-BoldItalic.otf │ │ │ ├── TTF │ │ │ ├── LibreFranklin-Black.ttf │ │ │ ├── LibreFranklin-Bold.ttf │ │ │ └── LibreFranklin-BoldItalic.ttf │ │ │ └── webfont.css │ │ ├── source-sans-pro │ │ └── 2.045R-ro-1.095R-it │ │ │ ├── LICENSE.txt │ │ │ ├── OTF │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-BoldIt.otf │ │ │ ├── SourceSansPro-It.otf │ │ │ └── SourceSansPro-Regular.otf │ │ │ ├── TTF │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ ├── SourceSansPro-BoldIt.ttf │ │ │ ├── SourceSansPro-It.ttf │ │ │ └── SourceSansPro-Regular.ttf │ │ │ ├── WOFF │ │ │ └── OTF │ │ │ │ ├── SourceSansPro-Bold.otf.woff │ │ │ │ ├── SourceSansPro-BoldIt.otf.woff │ │ │ │ ├── SourceSansPro-It.otf.woff │ │ │ │ └── SourceSansPro-Regular.otf.woff │ │ │ ├── WOFF2 │ │ │ └── TTF │ │ │ │ ├── SourceSansPro-Bold.ttf.woff2 │ │ │ │ ├── SourceSansPro-BoldIt.ttf.woff2 │ │ │ │ ├── SourceSansPro-It.ttf.woff2 │ │ │ │ └── SourceSansPro-Regular.ttf.woff2 │ │ │ └── webfont.css │ │ ├── source-serif-pro │ │ └── 3.000R │ │ │ ├── LICENSE.md │ │ │ ├── OTF │ │ │ ├── SourceSerifPro-Bold.otf │ │ │ ├── SourceSerifPro-BoldIt.otf │ │ │ ├── SourceSerifPro-It.otf │ │ │ └── SourceSerifPro-Regular.otf │ │ │ ├── TTF │ │ │ ├── SourceSerifPro-Bold.ttf │ │ │ ├── SourceSerifPro-BoldIt.ttf │ │ │ ├── SourceSerifPro-It.ttf │ │ │ └── SourceSerifPro-Regular.ttf │ │ │ ├── WOFF │ │ │ └── OTF │ │ │ │ ├── SourceSerifPro-Bold.otf.woff │ │ │ │ ├── SourceSerifPro-BoldIt.otf.woff │ │ │ │ ├── SourceSerifPro-It.otf.woff │ │ │ │ └── SourceSerifPro-Regular.otf.woff │ │ │ ├── WOFF2 │ │ │ └── TTF │ │ │ │ ├── SourceSerifPro-Bold.ttf.woff2 │ │ │ │ ├── SourceSerifPro-BoldIt.ttf.woff2 │ │ │ │ ├── SourceSerifPro-It.ttf.woff2 │ │ │ │ └── SourceSerifPro-Regular.ttf.woff2 │ │ │ └── webfont.css │ │ └── vollkorn │ │ └── 4.105 │ │ ├── OFL.txt │ │ ├── TTF │ │ ├── Vollkorn-Bold.ttf │ │ ├── Vollkorn-BoldItalic.ttf │ │ ├── Vollkorn-Italic.ttf │ │ └── Vollkorn-Regular.ttf │ │ ├── WOFF │ │ ├── Vollkorn-Bold.woff │ │ ├── Vollkorn-BoldItalic.woff │ │ ├── Vollkorn-Italic.woff │ │ └── Vollkorn-Regular.woff │ │ ├── WOFF2 │ │ ├── Vollkorn-Bold.woff2 │ │ ├── Vollkorn-BoldItalic.woff2 │ │ ├── Vollkorn-Italic.woff2 │ │ └── Vollkorn-Regular.woff2 │ │ └── webfont.css ├── markdeep-slides.css ├── markdeep-slides.js ├── reset.css └── themes │ ├── deepsea.css │ ├── serif.css │ └── simple.css └── screenshot.jpg /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 2-Clause License 2 | 3 | Copyright (c) 2019, Noah Doersing 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 20 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 22 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 23 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | -------------------------------------------------------------------------------- /markdeep-slides/lib/UPGRADE.md: -------------------------------------------------------------------------------- 1 | *(Really just a note to self.)* 2 | 3 | When upgrading any of these dependencies, keep the following in mind: 4 | 5 | 6 | ## Markdeep 7 | 8 | * Add new `markdeep.min.js`. 9 | * Get the new `relativize.css` from [here](https://github.com/doersino/markdeep-relative-sizes). 10 | * Add support (and maybe an example in the demo) for any newly added constructs. 11 | * Update the include paths at the bottom of the demo to match the new version. 12 | 13 | 14 | ## MathJax 15 | 16 | * [Strip it down](https://github.com/mathjax/MathJax-docs/wiki/Guide:-reducing-size-of-a-mathjax-installation/1814429ed1e97bfb7675c0fd400804baa9287249) to match the currently included version in terms of feature set and size. 17 | * Update the include path at the bottom of the demo to match the new version. 18 | 19 | 20 | ## Webfonts 21 | 22 | * Download new versions of ... from ...: 23 | * IBM Plex Mono from https://github.com/IBM/plex 24 | * Iosevka from https://github.com/be5invis/Iosevka 25 | * Libre Franklin from https://github.com/impallari/Libre-Franklin 26 | * Source Sans Pro from https://github.com/adobe-fonts/source-sans-pro 27 | * Source Serif Pro from https://github.com/adobe-fonts/source-serif-pro 28 | * Vollkorn from http://www.vollkorn-typeface.com 29 | * Update their import paths in the themes that use them. 30 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/CHTML-preview.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/CHTML-preview.js 3 | * 4 | * Copyright (c) 2009-2018 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.Callback.Queue(["Require",MathJax.Ajax,"[MathJax]/extensions/fast-preview.js"],["loadComplete",MathJax.Ajax,"[MathJax]/extensions/CHTML-preview.js"]); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/HTML-CSS/handle-floats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/HTML-CSS/handle-floats.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["HTML-CSS/handle-floats"]={version:"2.7.5"};MathJax.Hub.Startup.signal.Post("HTML-CSS handle-floats Ready");MathJax.Ajax.loadComplete("[MathJax]/extensions/HTML-CSS/handle-floats.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/HTML.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/HTML.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/HTML"]={version:"2.7.5"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.InputJax.TeX;var a=b.Definitions;a.Add({macros:{href:"HREF_attribute","class":"CLASS_attribute",style:"STYLE_attribute",cssId:"ID_attribute"}},null,true);b.Parse.Augment({HREF_attribute:function(e){var d=this.GetArgument(e),c=this.GetArgumentMML(e);this.Push(c.With({href:d}))},CLASS_attribute:function(d){var e=this.GetArgument(d),c=this.GetArgumentMML(d);if(c["class"]!=null){e=c["class"]+" "+e}this.Push(c.With({"class":e}))},STYLE_attribute:function(d){var e=this.GetArgument(d),c=this.GetArgumentMML(d);if(c.style!=null){if(e.charAt(e.length-1)!==";"){e+=";"}e=c.style+" "+e}this.Push(c.With({style:e}))},ID_attribute:function(e){var d=this.GetArgument(e),c=this.GetArgumentMML(e);this.Push(c.With({id:d}))},GetArgumentMML:function(d){var c=this.ParseArg(d);if(c.inferred&&c.data.length==1){c=c.data[0]}else{delete c.inferred}return c}});MathJax.Hub.Startup.signal.Post("TeX HTML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/HTML.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/action.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/action.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/action"]={version:"2.7.5"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.InputJax.TeX,a=MathJax.ElementJax.mml;b.Definitions.Add({macros:{toggle:"Toggle",mathtip:"Mathtip",texttip:["Macro","\\mathtip{#1}{\\text{#2}}",2]}},null,true);b.Parse.Augment({Toggle:function(d){var e=[],c;while((c=this.GetArgument(d))!=="\\endtoggle"){e.push(b.Parse(c,this.stack.env).mml())}this.Push(a.maction.apply(a,e).With({actiontype:a.ACTIONTYPE.TOGGLE}))},Mathtip:function(d){var c=this.ParseArg(d),e=this.ParseArg(d);this.Push(a.maction(c,e).With({actiontype:a.ACTIONTYPE.TOOLTIP}))}});MathJax.Hub.Startup.signal.Post("TeX action Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/action.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/autobold.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/autobold.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/autobold"]={version:"2.7.5"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var a=MathJax.InputJax.TeX;a.prefilterHooks.Add(function(d){var c=d.script.parentNode.insertBefore(document.createElement("span"),d.script);c.visibility="hidden";c.style.fontFamily="Times, serif";c.appendChild(document.createTextNode("ABCXYZabcxyz"));var b=c.offsetWidth;c.style.fontWeight="bold";if(b&&c.offsetWidth===b){d.math="\\boldsymbol{"+d.math+"}"}c.parentNode.removeChild(c)});MathJax.Hub.Startup.signal.Post("TeX autobold Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/autobold.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/autoload-all.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/autoload-all.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/autoload-all"]={version:"2.7.5"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var h={action:["mathtip","texttip","toggle"],AMSmath:["mathring","nobreakspace","negmedspace","negthickspace","intI","iiiint","idotsint","dddot","ddddot","sideset","boxed","substack","injlim","projlim","varliminf","varlimsup","varinjlim","varprojlim","DeclareMathOperator","operatorname","genfrac","tfrac","dfrac","binom","tbinom","dbinom","cfrac","shoveleft","shoveright","xrightarrow","xleftarrow"],begingroup:["begingroup","endgroup","gdef","global"],cancel:["cancel","bcancel","xcancel","cancelto"],color:["color","textcolor","colorbox","fcolorbox","definecolor"],enclose:["enclose"],extpfeil:["Newextarrow","xlongequal","xmapsto","xtofrom","xtwoheadleftarrow","xtwoheadrightarrow"],mhchem:["ce","cee","cf"]};var c={AMSmath:["subarray","smallmatrix","equation","equation*"],AMScd:["CD"]};var d,g,b,a={macros:{},environment:{}};for(d in h){if(h.hasOwnProperty(d)){if(!MathJax.Extension["TeX/"+d]){var f=h[d];for(g=0,b=f.length;g0){f=Math.min(3,e.scriptlevel+1)}else{f=(e.displaystyle?0:1)}var g=this.inherit;while(g&&g.type!=="math"){g=g.inherit}if(g){this.selection=f}this.choosing=false;return f},selected:function(){return this.data[this.choice()]},setTeXclass:function(e){return this.selected().setTeXclass(e)},isSpacelike:function(){return this.selected().isSpacelike()},isEmbellished:function(){return this.selected().isEmbellished()},Core:function(){return this.selected()},CoreMO:function(){return this.selected().CoreMO()},toHTML:function(e){e=this.HTMLcreateSpan(e);e.bbox=this.Core().toHTML(e).bbox;if(e.firstChild&&e.firstChild.style.marginLeft){e.style.marginLeft=e.firstChild.style.marginLeft;e.firstChild.style.marginLeft=""}return e},toSVG:function(){var e=this.Core().toSVG();this.SVGsaveData(e);return e},toCommonHTML:function(e){e=this.CHTMLcreateNode(e);this.CHTMLhandleStyle(e);this.CHTMLhandleColor(e);this.CHTMLaddChild(e,this.choice(),{});return e},toPreviewHTML:function(e){e=this.PHTMLcreateSpan(e);this.PHTMLhandleStyle(e);this.PHTMLhandleColor(e);this.PHTMLaddChild(e,this.choice(),{});return e}});MathJax.Hub.Startup.signal.Post("TeX mathchoice Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/mathchoice.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/noUndefined.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/noUndefined.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/noUndefined"]={version:"2.7.5",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/extensions/TeX/verb.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/TeX/verb.js 3 | * 4 | * Copyright (c) 2009-2018 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.Extension["TeX/verb"]={version:"2.7.5"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX;var b=c.Definitions;b.Add({macros:{verb:"Verb"}},null,true);c.Parse.Augment({Verb:function(d){var g=this.GetNext();var f=++this.i;if(g==""){c.Error(["MissingArgFor","Missing argument for %1",d])}while(this.i=0;a--){if(String(c[a].className).match(/(^| )math( |$)/)){this.ConvertMath(c[a],"")}}var d=b.getElementsByTagName("div");for(a=d.length-1;a>=0;a--){if(String(d[a].className).match(/(^| )math( |$)/)){this.ConvertMath(d[a],"; mode=display")}}},ConvertMath:function(c,d){if(c.getElementsByTagName("script").length===0){var b=c.parentNode,a=this.createMathTag(d,c.innerHTML);if(c.nextSibling){b.insertBefore(a,c.nextSibling)}else{b.appendChild(a)}if(this.config.preview!=="none"){this.createPreview(c)}b.removeChild(c)}},createPreview:function(b){var a=MathJax.Hub.config.preRemoveClass;var c=this.config.preview;if(c==="none"){return}if((b.previousSibling||{}).className===a){return}if(c==="TeX"){c=[this.filterPreview(b.innerHTML)]}if(c){c=MathJax.HTML.Element("span",{className:a},c);b.parentNode.insertBefore(c,b)}},createMathTag:function(c,b){b=b.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&");var a=document.createElement("script");a.type="math/tex"+c;MathJax.HTML.setScript(a,b);return a},filterPreview:function(a){return a}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.jsMath2jax],8);MathJax.Ajax.loadComplete("[MathJax]/extensions/jsMath2jax.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/Arrows.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Arrows.js 3 | * 4 | * Copyright (c) 2009-2018 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:{"\u219A":c.RELACCENT,"\u219B":c.RELACCENT,"\u219C":c.WIDEREL,"\u219D":c.WIDEREL,"\u219E":c.WIDEREL,"\u219F":c.WIDEREL,"\u21A0":c.WIDEREL,"\u21A1":c.RELSTRETCH,"\u21A2":c.WIDEREL,"\u21A3":c.WIDEREL,"\u21A4":c.WIDEREL,"\u21A5":c.RELSTRETCH,"\u21A7":c.RELSTRETCH,"\u21A8":c.RELSTRETCH,"\u21AB":c.WIDEREL,"\u21AC":c.WIDEREL,"\u21AD":c.WIDEREL,"\u21AE":c.RELACCENT,"\u21AF":c.RELSTRETCH,"\u21B0":c.RELSTRETCH,"\u21B1":c.RELSTRETCH,"\u21B2":c.RELSTRETCH,"\u21B3":c.RELSTRETCH,"\u21B4":c.RELSTRETCH,"\u21B5":c.RELSTRETCH,"\u21B6":c.RELACCENT,"\u21B7":c.RELACCENT,"\u21B8":c.REL,"\u21B9":c.WIDEREL,"\u21BA":c.REL,"\u21BB":c.REL,"\u21BE":c.RELSTRETCH,"\u21BF":c.RELSTRETCH,"\u21C2":c.RELSTRETCH,"\u21C3":c.RELSTRETCH,"\u21C4":c.WIDEREL,"\u21C5":c.RELSTRETCH,"\u21C6":c.WIDEREL,"\u21C7":c.WIDEREL,"\u21C8":c.RELSTRETCH,"\u21C9":c.WIDEREL,"\u21CA":c.RELSTRETCH,"\u21CB":c.WIDEREL,"\u21CD":c.RELACCENT,"\u21CE":c.RELACCENT,"\u21CF":c.RELACCENT,"\u21D6":c.RELSTRETCH,"\u21D7":c.RELSTRETCH,"\u21D8":c.RELSTRETCH,"\u21D9":c.RELSTRETCH,"\u21DA":c.WIDEREL,"\u21DB":c.WIDEREL,"\u21DC":c.WIDEREL,"\u21DD":c.WIDEREL,"\u21DE":c.REL,"\u21DF":c.REL,"\u21E0":c.WIDEREL,"\u21E1":c.RELSTRETCH,"\u21E2":c.WIDEREL,"\u21E3":c.RELSTRETCH,"\u21E4":c.WIDEREL,"\u21E5":c.WIDEREL,"\u21E6":c.WIDEREL,"\u21E7":c.RELSTRETCH,"\u21E8":c.WIDEREL,"\u21E9":c.RELSTRETCH,"\u21EA":c.RELSTRETCH,"\u21EB":c.RELSTRETCH,"\u21EC":c.RELSTRETCH,"\u21ED":c.RELSTRETCH,"\u21EE":c.RELSTRETCH,"\u21EF":c.RELSTRETCH,"\u21F0":c.WIDEREL,"\u21F1":c.REL,"\u21F2":c.REL,"\u21F3":c.RELSTRETCH,"\u21F4":c.RELACCENT,"\u21F5":c.RELSTRETCH,"\u21F6":c.WIDEREL,"\u21F7":c.RELACCENT,"\u21F8":c.RELACCENT,"\u21F9":c.RELACCENT,"\u21FA":c.RELACCENT,"\u21FB":c.RELACCENT,"\u21FC":c.RELACCENT,"\u21FD":c.WIDEREL,"\u21FE":c.WIDEREL,"\u21FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/Arrows.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/BasicLatin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/BasicLatin.js 3 | * 4 | * Copyright (c) 2009-2018 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:{"||":[0,0,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[0,0,b.ORD,{fence:true,stretchy:true,symmetric:true}]},postfix:{"!!":[1,0,b.BIN],"'":c.ACCENT,"++":[0,0,b.BIN],"--":[0,0,b.BIN],"..":[0,0,b.BIN],"...":c.ORD,"||":[0,0,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[0,0,b.ORD,{fence:true,stretchy:true,symmetric:true}]},infix:{"!=":c.BIN4,"&&":c.BIN4,"**":[1,1,b.BIN],"*=":c.BIN4,"+=":c.BIN4,"-=":c.BIN4,"->":c.BIN5,"//":[1,1,b.BIN],"/=":c.BIN4,":=":c.BIN4,"<=":c.BIN5,"<>":[1,1,b.BIN],"==":c.BIN4,">=":c.BIN5,"@":c.ORD11,"||":[2,2,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}]}}});MathJax.Ajax.loadComplete(a.optableDir+"/BasicLatin.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Dingbats.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2018 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:{"\u25A0":c.BIN3,"\u25A1":c.BIN3,"\u25AA":c.BIN3,"\u25AB":c.BIN3,"\u25AD":c.BIN3,"\u25AE":c.BIN3,"\u25AF":c.BIN3,"\u25B0":c.BIN3,"\u25B1":c.BIN3,"\u25B2":c.BIN4,"\u25B4":c.BIN4,"\u25B6":c.BIN4,"\u25B7":c.BIN4,"\u25B8":c.BIN4,"\u25BC":c.BIN4,"\u25BE":c.BIN4,"\u25C0":c.BIN4,"\u25C1":c.BIN4,"\u25C2":c.BIN4,"\u25C4":c.BIN4,"\u25C5":c.BIN4,"\u25C6":c.BIN4,"\u25C7":c.BIN4,"\u25C8":c.BIN4,"\u25C9":c.BIN4,"\u25CC":c.BIN4,"\u25CD":c.BIN4,"\u25CE":c.BIN4,"\u25CF":c.BIN4,"\u25D6":c.BIN4,"\u25D7":c.BIN4,"\u25E6":c.BIN4}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeometricShapes.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/element/mml/optable/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/AsciiMath/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/AsciiMath/config.js 3 | * 4 | * Copyright (c) 2009-2018 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.7.5",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{fixphi:true,useMathMLspacing:true,displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/config.js 3 | * 4 | * Copyright (c) 2009-2018 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.7.5",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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/a.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/a.js 3 | * 4 | * Copyright (c) 2009-2018 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,{AElig:"\u00C6",AMP:"\u0026",Aacute:"\u00C1",Abreve:"\u0102",Acirc:"\u00C2",Acy:"\u0410",Agrave:"\u00C0",Alpha:"\u0391",Amacr:"\u0100",And:"\u2A53",Aogon:"\u0104",Aring:"\u00C5",Assign:"\u2254",Atilde:"\u00C3",Auml:"\u00C4",aacute:"\u00E1",abreve:"\u0103",ac:"\u223E",acE:"\u223E\u0333",acd:"\u223F",acirc:"\u00E2",acy:"\u0430",aelig:"\u00E6",af:"\u2061",agrave:"\u00E0",alefsym:"\u2135",amacr:"\u0101",amp:"\u0026",andand:"\u2A55",andd:"\u2A5C",andslope:"\u2A58",andv:"\u2A5A",ange:"\u29A4",angle:"\u2220",angmsdaa:"\u29A8",angmsdab:"\u29A9",angmsdac:"\u29AA",angmsdad:"\u29AB",angmsdae:"\u29AC",angmsdaf:"\u29AD",angmsdag:"\u29AE",angmsdah:"\u29AF",angrt:"\u221F",angrtvb:"\u22BE",angrtvbd:"\u299D",angst:"\u00C5",angzarr:"\u237C",aogon:"\u0105",ap:"\u2248",apE:"\u2A70",apacir:"\u2A6F",apid:"\u224B",apos:"\u0027",approx:"\u2248",approxeq:"\u224A",aring:"\u00E5",ast:"\u002A",asymp:"\u2248",asympeq:"\u224D",atilde:"\u00E3",auml:"\u00E4",awconint:"\u2233",awint:"\u2A11"});MathJax.Ajax.loadComplete(a.entityDir+"/a.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/b.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/b.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Barv:"\u2AE7",Barwed:"\u2306",Bcy:"\u0411",Bernoullis:"\u212C",Beta:"\u0392",Bumpeq:"\u224E",bNot:"\u2AED",backcong:"\u224C",backepsilon:"\u03F6",barvee:"\u22BD",barwed:"\u2305",barwedge:"\u2305",bbrk:"\u23B5",bbrktbrk:"\u23B6",bcong:"\u224C",bcy:"\u0431",bdquo:"\u201E",becaus:"\u2235",because:"\u2235",bemptyv:"\u29B0",bepsi:"\u03F6",bernou:"\u212C",bigcap:"\u22C2",bigcup:"\u22C3",bigvee:"\u22C1",bigwedge:"\u22C0",bkarow:"\u290D",blacksquare:"\u25AA",blacktriangleright:"\u25B8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"\u003D\u20E5",bnequiv:"\u2261\u20E5",bnot:"\u2310",bot:"\u22A5",bottom:"\u22A5",boxDL:"\u2557",boxDR:"\u2554",boxDl:"\u2556",boxDr:"\u2553",boxH:"\u2550",boxHD:"\u2566",boxHU:"\u2569",boxHd:"\u2564",boxHu:"\u2567",boxUL:"\u255D",boxUR:"\u255A",boxUl:"\u255C",boxUr:"\u2559",boxV:"\u2551",boxVH:"\u256C",boxVL:"\u2563",boxVR:"\u2560",boxVh:"\u256B",boxVl:"\u2562",boxVr:"\u255F",boxbox:"\u29C9",boxdL:"\u2555",boxdR:"\u2552",boxh:"\u2500",boxhD:"\u2565",boxhU:"\u2568",boxhd:"\u252C",boxhu:"\u2534",boxuL:"\u255B",boxuR:"\u2558",boxv:"\u2502",boxvH:"\u256A",boxvL:"\u2561",boxvR:"\u255E",boxvh:"\u253C",boxvl:"\u2524",boxvr:"\u251C",bprime:"\u2035",breve:"\u02D8",brvbar:"\u00A6",bsemi:"\u204F",bsim:"\u223D",bsime:"\u22CD",bsolb:"\u29C5",bsolhsub:"\u27C8",bullet:"\u2022",bump:"\u224E",bumpE:"\u2AAE",bumpe:"\u224F",bumpeq:"\u224F"});MathJax.Ajax.loadComplete(a.entityDir+"/b.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/c.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/c.js 3 | * 4 | * Copyright (c) 2009-2018 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,{CHcy:"\u0427",COPY:"\u00A9",Cacute:"\u0106",CapitalDifferentialD:"\u2145",Cayleys:"\u212D",Ccaron:"\u010C",Ccedil:"\u00C7",Ccirc:"\u0108",Cconint:"\u2230",Cdot:"\u010A",Cedilla:"\u00B8",Chi:"\u03A7",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201D",CloseCurlyQuote:"\u2019",Colon:"\u2237",Colone:"\u2A74",Conint:"\u222F",CounterClockwiseContourIntegral:"\u2233",cacute:"\u0107",capand:"\u2A44",capbrcup:"\u2A49",capcap:"\u2A4B",capcup:"\u2A47",capdot:"\u2A40",caps:"\u2229\uFE00",caret:"\u2041",caron:"\u02C7",ccaps:"\u2A4D",ccaron:"\u010D",ccedil:"\u00E7",ccirc:"\u0109",ccups:"\u2A4C",ccupssm:"\u2A50",cdot:"\u010B",cedil:"\u00B8",cemptyv:"\u29B2",cent:"\u00A2",centerdot:"\u00B7",chcy:"\u0447",checkmark:"\u2713",cir:"\u25CB",cirE:"\u29C3",cire:"\u2257",cirfnint:"\u2A10",cirmid:"\u2AEF",cirscir:"\u29C2",clubsuit:"\u2663",colone:"\u2254",coloneq:"\u2254",comma:"\u002C",commat:"\u0040",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2A6D",conint:"\u222E",coprod:"\u2210",copy:"\u00A9",copysr:"\u2117",crarr:"\u21B5",cross:"\u2717",csub:"\u2ACF",csube:"\u2AD1",csup:"\u2AD0",csupe:"\u2AD2",cudarrl:"\u2938",cudarrr:"\u2935",cularrp:"\u293D",cupbrcap:"\u2A48",cupcap:"\u2A46",cupcup:"\u2A4A",cupdot:"\u228D",cupor:"\u2A45",cups:"\u222A\uFE00",curarrm:"\u293C",curlyeqprec:"\u22DE",curlyeqsucc:"\u22DF",curren:"\u00A4",curvearrowleft:"\u21B6",curvearrowright:"\u21B7",cuvee:"\u22CE",cuwed:"\u22CF",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232D"});MathJax.Ajax.loadComplete(a.entityDir+"/c.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/d.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/d.js 3 | * 4 | * Copyright (c) 2009-2018 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,{DD:"\u2145",DDotrahd:"\u2911",DJcy:"\u0402",DScy:"\u0405",DZcy:"\u040F",Darr:"\u21A1",Dashv:"\u2AE4",Dcaron:"\u010E",Dcy:"\u0414",DiacriticalAcute:"\u00B4",DiacriticalDot:"\u02D9",DiacriticalDoubleAcute:"\u02DD",DiacriticalGrave:"\u0060",DiacriticalTilde:"\u02DC",Dot:"\u00A8",DotDot:"\u20DC",DoubleContourIntegral:"\u222F",DoubleDownArrow:"\u21D3",DoubleLeftArrow:"\u21D0",DoubleLeftRightArrow:"\u21D4",DoubleLeftTee:"\u2AE4",DoubleLongLeftArrow:"\u27F8",DoubleLongLeftRightArrow:"\u27FA",DoubleLongRightArrow:"\u27F9",DoubleRightArrow:"\u21D2",DoubleUpArrow:"\u21D1",DoubleUpDownArrow:"\u21D5",DownArrowBar:"\u2913",DownArrowUpArrow:"\u21F5",DownBreve:"\u0311",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295E",DownLeftVectorBar:"\u2956",DownRightTeeVector:"\u295F",DownRightVectorBar:"\u2957",DownTeeArrow:"\u21A7",Dstrok:"\u0110",dArr:"\u21D3",dHar:"\u2965",darr:"\u2193",dash:"\u2010",dashv:"\u22A3",dbkarow:"\u290F",dblac:"\u02DD",dcaron:"\u010F",dcy:"\u0434",dd:"\u2146",ddagger:"\u2021",ddotseq:"\u2A77",demptyv:"\u29B1",dfisht:"\u297F",dharl:"\u21C3",dharr:"\u21C2",diam:"\u22C4",diamond:"\u22C4",diamondsuit:"\u2666",diams:"\u2666",die:"\u00A8",disin:"\u22F2",divide:"\u00F7",divonx:"\u22C7",djcy:"\u0452",dlcorn:"\u231E",dlcrop:"\u230D",dollar:"\u0024",doteq:"\u2250",dotminus:"\u2238",doublebarwedge:"\u2306",downarrow:"\u2193",downdownarrows:"\u21CA",downharpoonleft:"\u21C3",downharpoonright:"\u21C2",drbkarow:"\u2910",drcorn:"\u231F",drcrop:"\u230C",dscy:"\u0455",dsol:"\u29F6",dstrok:"\u0111",dtri:"\u25BF",dtrif:"\u25BE",duarr:"\u21F5",duhar:"\u296F",dwangle:"\u29A6",dzcy:"\u045F",dzigrarr:"\u27FF"});MathJax.Ajax.loadComplete(a.entityDir+"/d.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/e.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/e.js 3 | * 4 | * Copyright (c) 2009-2018 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,{ENG:"\u014A",ETH:"\u00D0",Eacute:"\u00C9",Ecaron:"\u011A",Ecirc:"\u00CA",Ecy:"\u042D",Edot:"\u0116",Egrave:"\u00C8",Emacr:"\u0112",EmptySmallSquare:"\u25FB",EmptyVerySmallSquare:"\u25AB",Eogon:"\u0118",Epsilon:"\u0395",Equal:"\u2A75",Esim:"\u2A73",Eta:"\u0397",Euml:"\u00CB",eDDot:"\u2A77",eDot:"\u2251",eacute:"\u00E9",easter:"\u2A6E",ecaron:"\u011B",ecirc:"\u00EA",ecolon:"\u2255",ecy:"\u044D",edot:"\u0117",ee:"\u2147",eg:"\u2A9A",egrave:"\u00E8",egsdot:"\u2A98",el:"\u2A99",elinters:"\u23E7",elsdot:"\u2A97",emacr:"\u0113",emptyset:"\u2205",emptyv:"\u2205",emsp:"\u2003",emsp13:"\u2004",emsp14:"\u2005",eng:"\u014B",ensp:"\u2002",eogon:"\u0119",epar:"\u22D5",eparsl:"\u29E3",eplus:"\u2A71",epsilon:"\u03B5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2A96",eqslantless:"\u2A95",equals:"\u003D",equest:"\u225F",equiv:"\u2261",equivDD:"\u2A78",eqvparsl:"\u29E5",erarr:"\u2971",esdot:"\u2250",esim:"\u2242",euml:"\u00EB",euro:"\u20AC",excl:"\u0021",exist:"\u2203",expectation:"\u2130",exponentiale:"\u2147"});MathJax.Ajax.loadComplete(a.entityDir+"/e.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/f.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/f.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Fcy:"\u0424",FilledSmallSquare:"\u25FC",Fouriertrf:"\u2131",fallingdotseq:"\u2252",fcy:"\u0444",female:"\u2640",ffilig:"\uFB03",fflig:"\uFB00",ffllig:"\uFB04",filig:"\uFB01",fjlig:"\u0066\u006A",fllig:"\uFB02",fltns:"\u25B1",fnof:"\u0192",forall:"\u2200",forkv:"\u2AD9",fpartint:"\u2A0D",frac12:"\u00BD",frac13:"\u2153",frac14:"\u00BC",frac15:"\u2155",frac16:"\u2159",frac18:"\u215B",frac23:"\u2154",frac25:"\u2156",frac34:"\u00BE",frac35:"\u2157",frac38:"\u215C",frac45:"\u2158",frac56:"\u215A",frac58:"\u215D",frac78:"\u215E",frasl:"\u2044"});MathJax.Ajax.loadComplete(a.entityDir+"/f.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/fr.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Afr:"\uD835\uDD04",Bfr:"\uD835\uDD05",Cfr:"\u212D",Dfr:"\uD835\uDD07",Efr:"\uD835\uDD08",Ffr:"\uD835\uDD09",Gfr:"\uD835\uDD0A",Hfr:"\u210C",Ifr:"\u2111",Jfr:"\uD835\uDD0D",Kfr:"\uD835\uDD0E",Lfr:"\uD835\uDD0F",Mfr:"\uD835\uDD10",Nfr:"\uD835\uDD11",Ofr:"\uD835\uDD12",Pfr:"\uD835\uDD13",Qfr:"\uD835\uDD14",Rfr:"\u211C",Sfr:"\uD835\uDD16",Tfr:"\uD835\uDD17",Ufr:"\uD835\uDD18",Vfr:"\uD835\uDD19",Wfr:"\uD835\uDD1A",Xfr:"\uD835\uDD1B",Yfr:"\uD835\uDD1C",Zfr:"\u2128",afr:"\uD835\uDD1E",bfr:"\uD835\uDD1F",cfr:"\uD835\uDD20",dfr:"\uD835\uDD21",efr:"\uD835\uDD22",ffr:"\uD835\uDD23",gfr:"\uD835\uDD24",hfr:"\uD835\uDD25",ifr:"\uD835\uDD26",jfr:"\uD835\uDD27",kfr:"\uD835\uDD28",lfr:"\uD835\uDD29",mfr:"\uD835\uDD2A",nfr:"\uD835\uDD2B",ofr:"\uD835\uDD2C",pfr:"\uD835\uDD2D",qfr:"\uD835\uDD2E",rfr:"\uD835\uDD2F",sfr:"\uD835\uDD30",tfr:"\uD835\uDD31",ufr:"\uD835\uDD32",vfr:"\uD835\uDD33",wfr:"\uD835\uDD34",xfr:"\uD835\uDD35",yfr:"\uD835\uDD36",zfr:"\uD835\uDD37"});MathJax.Ajax.loadComplete(a.entityDir+"/fr.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/g.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/g.js 3 | * 4 | * Copyright (c) 2009-2018 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,{GJcy:"\u0403",GT:"\u003E",Gammad:"\u03DC",Gbreve:"\u011E",Gcedil:"\u0122",Gcirc:"\u011C",Gcy:"\u0413",Gdot:"\u0120",GreaterGreater:"\u2AA2",Gt:"\u226B",gE:"\u2267",gacute:"\u01F5",gammad:"\u03DD",gbreve:"\u011F",gcirc:"\u011D",gcy:"\u0433",gdot:"\u0121",ge:"\u2265",gel:"\u22DB",geq:"\u2265",geqq:"\u2267",geqslant:"\u2A7E",ges:"\u2A7E",gescc:"\u2AA9",gesdot:"\u2A80",gesdoto:"\u2A82",gesdotol:"\u2A84",gesl:"\u22DB\uFE00",gesles:"\u2A94",gg:"\u226B",ggg:"\u22D9",gjcy:"\u0453",gl:"\u2277",glE:"\u2A92",gla:"\u2AA5",glj:"\u2AA4",gnapprox:"\u2A8A",gneq:"\u2A88",gneqq:"\u2269",grave:"\u0060",gsim:"\u2273",gsime:"\u2A8E",gsiml:"\u2A90",gtcc:"\u2AA7",gtcir:"\u2A7A",gtlPar:"\u2995",gtquest:"\u2A7C",gtrapprox:"\u2A86",gtrarr:"\u2978",gtrdot:"\u22D7",gtreqless:"\u22DB",gtreqqless:"\u2A8C",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\uFE00",gvnE:"\u2269\uFE00"});MathJax.Ajax.loadComplete(a.entityDir+"/g.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/h.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/h.js 3 | * 4 | * Copyright (c) 2009-2018 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,{HARDcy:"\u042A",Hcirc:"\u0124",HilbertSpace:"\u210B",HorizontalLine:"\u2500",Hstrok:"\u0126",hArr:"\u21D4",hairsp:"\u200A",half:"\u00BD",hamilt:"\u210B",hardcy:"\u044A",harr:"\u2194",harrcir:"\u2948",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hercon:"\u22B9",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21FF",homtht:"\u223B",horbar:"\u2015",hslash:"\u210F",hstrok:"\u0127",hybull:"\u2043",hyphen:"\u2010"});MathJax.Ajax.loadComplete(a.entityDir+"/h.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/i.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/i.js 3 | * 4 | * Copyright (c) 2009-2018 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,{IEcy:"\u0415",IJlig:"\u0132",IOcy:"\u0401",Iacute:"\u00CD",Icirc:"\u00CE",Icy:"\u0418",Idot:"\u0130",Igrave:"\u00CC",Imacr:"\u012A",Implies:"\u21D2",Int:"\u222C",Iogon:"\u012E",Iota:"\u0399",Itilde:"\u0128",Iukcy:"\u0406",Iuml:"\u00CF",iacute:"\u00ED",ic:"\u2063",icirc:"\u00EE",icy:"\u0438",iecy:"\u0435",iexcl:"\u00A1",iff:"\u21D4",igrave:"\u00EC",ii:"\u2148",iiiint:"\u2A0C",iiint:"\u222D",iinfin:"\u29DC",iiota:"\u2129",ijlig:"\u0133",imacr:"\u012B",image:"\u2111",imagline:"\u2110",imagpart:"\u2111",imof:"\u22B7",imped:"\u01B5","in":"\u2208",incare:"\u2105",infintie:"\u29DD",inodot:"\u0131","int":"\u222B",integers:"\u2124",intercal:"\u22BA",intlarhk:"\u2A17",intprod:"\u2A3C",iocy:"\u0451",iogon:"\u012F",iprod:"\u2A3C",iquest:"\u00BF",isin:"\u2208",isinE:"\u22F9",isindot:"\u22F5",isins:"\u22F4",isinsv:"\u22F3",isinv:"\u2208",it:"\u2062",itilde:"\u0129",iukcy:"\u0456",iuml:"\u00EF"});MathJax.Ajax.loadComplete(a.entityDir+"/i.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/j.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/k.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/m.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/m.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Map:"\u2905",Mcy:"\u041C",MediumSpace:"\u205F",Mellintrf:"\u2133",Mu:"\u039C",mDDot:"\u223A",male:"\u2642",maltese:"\u2720",map:"\u21A6",mapsto:"\u21A6",mapstodown:"\u21A7",mapstoleft:"\u21A4",mapstoup:"\u21A5",marker:"\u25AE",mcomma:"\u2A29",mcy:"\u043C",mdash:"\u2014",measuredangle:"\u2221",micro:"\u00B5",mid:"\u2223",midast:"\u002A",midcir:"\u2AF0",middot:"\u00B7",minus:"\u2212",minusb:"\u229F",minusd:"\u2238",minusdu:"\u2A2A",mlcp:"\u2ADB",mldr:"\u2026",mnplus:"\u2213",models:"\u22A7",mp:"\u2213",mstpos:"\u223E",mumap:"\u22B8"});MathJax.Ajax.loadComplete(a.entityDir+"/m.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/o.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/o.js 3 | * 4 | * Copyright (c) 2009-2018 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,{OElig:"\u0152",Oacute:"\u00D3",Ocirc:"\u00D4",Ocy:"\u041E",Odblac:"\u0150",Ograve:"\u00D2",Omacr:"\u014C",Omicron:"\u039F",OpenCurlyDoubleQuote:"\u201C",OpenCurlyQuote:"\u2018",Or:"\u2A54",Oslash:"\u00D8",Otilde:"\u00D5",Otimes:"\u2A37",Ouml:"\u00D6",OverBracket:"\u23B4",OverParenthesis:"\u23DC",oS:"\u24C8",oacute:"\u00F3",oast:"\u229B",ocir:"\u229A",ocirc:"\u00F4",ocy:"\u043E",odash:"\u229D",odblac:"\u0151",odiv:"\u2A38",odot:"\u2299",odsold:"\u29BC",oelig:"\u0153",ofcir:"\u29BF",ogon:"\u02DB",ograve:"\u00F2",ogt:"\u29C1",ohbar:"\u29B5",ohm:"\u03A9",oint:"\u222E",olarr:"\u21BA",olcir:"\u29BE",olcross:"\u29BB",oline:"\u203E",olt:"\u29C0",omacr:"\u014D",omid:"\u29B6",ominus:"\u2296",opar:"\u29B7",operp:"\u29B9",oplus:"\u2295",orarr:"\u21BB",ord:"\u2A5D",order:"\u2134",orderof:"\u2134",ordf:"\u00AA",ordm:"\u00BA",origof:"\u22B6",oror:"\u2A56",orslope:"\u2A57",orv:"\u2A5B",oslash:"\u00F8",otilde:"\u00F5",otimes:"\u2297",otimesas:"\u2A36",ouml:"\u00F6",ovbar:"\u233D"});MathJax.Ajax.loadComplete(a.entityDir+"/o.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/opf.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/opf.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Aopf:"\uD835\uDD38",Bopf:"\uD835\uDD39",Copf:"\u2102",Dopf:"\uD835\uDD3B",Eopf:"\uD835\uDD3C",Fopf:"\uD835\uDD3D",Gopf:"\uD835\uDD3E",Hopf:"\u210D",Iopf:"\uD835\uDD40",Jopf:"\uD835\uDD41",Kopf:"\uD835\uDD42",Lopf:"\uD835\uDD43",Mopf:"\uD835\uDD44",Nopf:"\u2115",Oopf:"\uD835\uDD46",Popf:"\u2119",Qopf:"\u211A",Ropf:"\u211D",Sopf:"\uD835\uDD4A",Topf:"\uD835\uDD4B",Uopf:"\uD835\uDD4C",Vopf:"\uD835\uDD4D",Wopf:"\uD835\uDD4E",Xopf:"\uD835\uDD4F",Yopf:"\uD835\uDD50",Zopf:"\u2124",aopf:"\uD835\uDD52",bopf:"\uD835\uDD53",copf:"\uD835\uDD54",dopf:"\uD835\uDD55",eopf:"\uD835\uDD56",fopf:"\uD835\uDD57",gopf:"\uD835\uDD58",hopf:"\uD835\uDD59",iopf:"\uD835\uDD5A",jopf:"\uD835\uDD5B",kopf:"\uD835\uDD5C",lopf:"\uD835\uDD5D",mopf:"\uD835\uDD5E",nopf:"\uD835\uDD5F",oopf:"\uD835\uDD60",popf:"\uD835\uDD61",qopf:"\uD835\uDD62",ropf:"\uD835\uDD63",sopf:"\uD835\uDD64",topf:"\uD835\uDD65",uopf:"\uD835\uDD66",vopf:"\uD835\uDD67",wopf:"\uD835\uDD68",xopf:"\uD835\uDD69",yopf:"\uD835\uDD6A",zopf:"\uD835\uDD6B"});MathJax.Ajax.loadComplete(a.entityDir+"/opf.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/p.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/p.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Pcy:"\u041F",Poincareplane:"\u210C",Pr:"\u2ABB",Prime:"\u2033",Proportion:"\u2237",par:"\u2225",para:"\u00B6",parallel:"\u2225",parsim:"\u2AF3",parsl:"\u2AFD",part:"\u2202",pcy:"\u043F",percnt:"\u0025",permil:"\u2030",perp:"\u22A5",pertenk:"\u2031",phmmat:"\u2133",phone:"\u260E",pitchfork:"\u22D4",planck:"\u210F",planckh:"\u210E",plankv:"\u210F",plus:"\u002B",plusacir:"\u2A23",plusb:"\u229E",pluscir:"\u2A22",plusdo:"\u2214",plusdu:"\u2A25",pluse:"\u2A72",plusmn:"\u00B1",plussim:"\u2A26",plustwo:"\u2A27",pm:"\u00B1",pointint:"\u2A15",pound:"\u00A3",pr:"\u227A",prE:"\u2AB3",prcue:"\u227C",pre:"\u2AAF",prec:"\u227A",precapprox:"\u2AB7",preccurlyeq:"\u227C",preceq:"\u2AAF",precsim:"\u227E",primes:"\u2119",prnE:"\u2AB5",prnap:"\u2AB9",prnsim:"\u22E8",prod:"\u220F",profalar:"\u232E",profline:"\u2312",profsurf:"\u2313",prop:"\u221D",propto:"\u221D",prsim:"\u227E",prurel:"\u22B0",puncsp:"\u2008"});MathJax.Ajax.loadComplete(a.entityDir+"/p.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/q.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/scr.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/scr.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Ascr:"\uD835\uDC9C",Bscr:"\u212C",Cscr:"\uD835\uDC9E",Dscr:"\uD835\uDC9F",Escr:"\u2130",Fscr:"\u2131",Gscr:"\uD835\uDCA2",Hscr:"\u210B",Iscr:"\u2110",Jscr:"\uD835\uDCA5",Kscr:"\uD835\uDCA6",Lscr:"\u2112",Mscr:"\u2133",Nscr:"\uD835\uDCA9",Oscr:"\uD835\uDCAA",Pscr:"\uD835\uDCAB",Qscr:"\uD835\uDCAC",Rscr:"\u211B",Sscr:"\uD835\uDCAE",Tscr:"\uD835\uDCAF",Uscr:"\uD835\uDCB0",Vscr:"\uD835\uDCB1",Wscr:"\uD835\uDCB2",Xscr:"\uD835\uDCB3",Yscr:"\uD835\uDCB4",Zscr:"\uD835\uDCB5",ascr:"\uD835\uDCB6",bscr:"\uD835\uDCB7",cscr:"\uD835\uDCB8",dscr:"\uD835\uDCB9",escr:"\u212F",fscr:"\uD835\uDCBB",gscr:"\u210A",hscr:"\uD835\uDCBD",iscr:"\uD835\uDCBE",jscr:"\uD835\uDCBF",kscr:"\uD835\uDCC0",lscr:"\uD835\uDCC1",mscr:"\uD835\uDCC2",nscr:"\uD835\uDCC3",oscr:"\u2134",pscr:"\uD835\uDCC5",qscr:"\uD835\uDCC6",rscr:"\uD835\uDCC7",sscr:"\uD835\uDCC8",tscr:"\uD835\uDCC9",uscr:"\uD835\uDCCA",vscr:"\uD835\uDCCB",wscr:"\uD835\uDCCC",xscr:"\uD835\uDCCD",yscr:"\uD835\uDCCE",zscr:"\uD835\uDCCF"});MathJax.Ajax.loadComplete(a.entityDir+"/scr.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/t.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/t.js 3 | * 4 | * Copyright (c) 2009-2018 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,{THORN:"\u00DE",TRADE:"\u2122",TSHcy:"\u040B",TScy:"\u0426",Tab:"\u0009",Tau:"\u03A4",Tcaron:"\u0164",Tcedil:"\u0162",Tcy:"\u0422",ThickSpace:"\u205F\u200A",ThinSpace:"\u2009",TripleDot:"\u20DB",Tstrok:"\u0166",target:"\u2316",tbrk:"\u23B4",tcaron:"\u0165",tcedil:"\u0163",tcy:"\u0442",tdot:"\u20DB",telrec:"\u2315",there4:"\u2234",therefore:"\u2234",thetasym:"\u03D1",thickapprox:"\u2248",thicksim:"\u223C",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223C",thorn:"\u00FE",timesb:"\u22A0",timesbar:"\u2A31",timesd:"\u2A30",tint:"\u222D",toea:"\u2928",top:"\u22A4",topbot:"\u2336",topcir:"\u2AF1",topfork:"\u2ADA",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",triangledown:"\u25BF",triangleleft:"\u25C3",trianglelefteq:"\u22B4",triangleright:"\u25B9",trianglerighteq:"\u22B5",tridot:"\u25EC",trie:"\u225C",triminus:"\u2A3A",triplus:"\u2A39",trisb:"\u29CD",tritime:"\u2A3B",trpezium:"\u23E2",tscy:"\u0446",tshcy:"\u045B",tstrok:"\u0167",twixt:"\u226C",twoheadleftarrow:"\u219E",twoheadrightarrow:"\u21A0"});MathJax.Ajax.loadComplete(a.entityDir+"/t.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/u.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/u.js 3 | * 4 | * Copyright (c) 2009-2018 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,{Uacute:"\u00DA",Uarr:"\u219F",Uarrocir:"\u2949",Ubrcy:"\u040E",Ubreve:"\u016C",Ucirc:"\u00DB",Ucy:"\u0423",Udblac:"\u0170",Ugrave:"\u00D9",Umacr:"\u016A",UnderBracket:"\u23B5",UnderParenthesis:"\u23DD",Uogon:"\u0172",UpArrowBar:"\u2912",UpArrowDownArrow:"\u21C5",UpEquilibrium:"\u296E",UpTeeArrow:"\u21A5",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",Upsi:"\u03D2",Uring:"\u016E",Utilde:"\u0168",Uuml:"\u00DC",uArr:"\u21D1",uHar:"\u2963",uacute:"\u00FA",uarr:"\u2191",ubrcy:"\u045E",ubreve:"\u016D",ucirc:"\u00FB",ucy:"\u0443",udarr:"\u21C5",udblac:"\u0171",udhar:"\u296E",ufisht:"\u297E",ugrave:"\u00F9",uharl:"\u21BF",uharr:"\u21BE",uhblk:"\u2580",ulcorn:"\u231C",ulcorner:"\u231C",ulcrop:"\u230F",ultri:"\u25F8",umacr:"\u016B",uml:"\u00A8",uogon:"\u0173",uparrow:"\u2191",updownarrow:"\u2195",upharpoonleft:"\u21BF",upharpoonright:"\u21BE",uplus:"\u228E",upsih:"\u03D2",upsilon:"\u03C5",urcorn:"\u231D",urcorner:"\u231D",urcrop:"\u230E",uring:"\u016F",urtri:"\u25F9",utdot:"\u22F0",utilde:"\u0169",utri:"\u25B5",utrif:"\u25B4",uuarr:"\u21C8",uuml:"\u00FC",uwangle:"\u29A7"});MathJax.Ajax.loadComplete(a.entityDir+"/u.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/v.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/v.js 3 | * 4 | * Copyright (c) 2009-2018 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,{VDash:"\u22AB",Vbar:"\u2AEB",Vcy:"\u0412",Vdashl:"\u2AE6",Verbar:"\u2016",Vert:"\u2016",VerticalLine:"\u007C",VerticalSeparator:"\u2758",VeryThinSpace:"\u200A",vArr:"\u21D5",vBar:"\u2AE8",vBarv:"\u2AE9",vDash:"\u22A8",vangrt:"\u299C",varepsilon:"\u03F5",varkappa:"\u03F0",varnothing:"\u2205",varphi:"\u03D5",varpi:"\u03D6",varpropto:"\u221D",varr:"\u2195",varrho:"\u03F1",varsigma:"\u03C2",varsubsetneq:"\u228A\uFE00",varsubsetneqq:"\u2ACB\uFE00",varsupsetneq:"\u228B\uFE00",varsupsetneqq:"\u2ACC\uFE00",vartheta:"\u03D1",vartriangleleft:"\u22B2",vartriangleright:"\u22B3",vcy:"\u0432",vdash:"\u22A2",vee:"\u2228",veeeq:"\u225A",verbar:"\u007C",vert:"\u007C",vltri:"\u22B2",vnsub:"\u2282\u20D2",vnsup:"\u2283\u20D2",vprop:"\u221D",vrtri:"\u22B3",vsubnE:"\u2ACB\uFE00",vsubne:"\u228A\uFE00",vsupnE:"\u2ACC\uFE00",vsupne:"\u228B\uFE00",vzigzag:"\u299A"});MathJax.Ajax.loadComplete(a.entityDir+"/v.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/w.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/x.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/y.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/z.js 3 | * 4 | * Copyright (c) 2009-2018 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 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/input/TeX/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/TeX/config.js 3 | * 4 | * Copyright (c) 2009-2018 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.TeX=MathJax.InputJax({id:"TeX",version:"2.7.5",directory:MathJax.InputJax.directory+"/TeX",extensionDir:MathJax.InputJax.extensionDir+"/TeX",config:{TagSide:"right",TagIndent:"0.8em",MultLineWidth:"85%",equationNumbers:{autoNumber:"none",formatNumber:function(a){return a},formatTag:function(a){return"("+a+")"},formatID:function(a){return"mjx-eqn-"+String(a).replace(/\s/g,"_")},formatURL:function(b,a){return a+"#"+encodeURIComponent(b)},useLabelIds:true}},resetEquationNumbers:function(){}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/jax/output/SVG/autoload/annotation-xml.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/autoload/annotation-xml.js 3 | * 4 | * Copyright (c) 2009-2018 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("SVG Jax Ready",function(){var c="2.7.5";var a=MathJax.ElementJax.mml,d=MathJax.OutputJax.SVG;var b=d.BBOX;b.FOREIGN=b.Subclass({type:"foreignObject",removeable:false});a["annotation-xml"].Augment({toSVG:function(){var f=this.SVG();this.SVGhandleSpace(f);var h=this.Get("encoding");for(var g=0,e=this.data.length;g 2 | 3 | 4 | MathJax Example Page 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 |

MathJax Example Pages

16 | 17 | View the page source for any of these examples to see how they work. 18 | 19 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-asciimath.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MathJax AsciiMath Test Page 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |

16 | When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and they are 17 |

18 |

19 | `x = (-b +- sqrt(b^2-4ac))/(2a) .` 20 |

21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-autoload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Example of defining a macro that autoloads an extension 5 | 6 | 7 | 8 | 9 | 10 | 21 | 22 | 32 | 33 | 34 | 35 | 36 | 37 |

38 | This page makes \cancel, \bcancel, 39 | \xcancel, and \cancelto all be defined so that 40 | they will load the cancel.js extension when first used. 41 |

42 | 43 |

44 | Here is the first usage: \(\cancel{x+1}\). It will cause the cancel 45 | package to be loaded automatically. 46 |

47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-eqrefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MathJax Equation References 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 23 | 24 | 25 | 26 | 27 |
28 |

A test of Equation References

29 |
30 | 31 |
32 |
33 | Here is a labeled equation: 34 | $$x+1\over\sqrt{1-x^2}\label{ref1}$$ 35 | with a reference to ref1: \ref{ref1}, 36 | and another numbered one with no label: 37 | $$x+1\over\sqrt{1-x^2}$$ 38 | This one uses \nonumber: 39 | $$x+1\over\sqrt{1-x^2}\nonumber$$ 40 |

41 |


42 |

43 | Here's one using the equation environment: 44 | \begin{equation} 45 | x+1\over\sqrt{1-x^2} 46 | \end{equation} 47 | and one with equation* environment: 48 | \begin{equation*} 49 | x+1\over\sqrt{1-x^2} 50 | \end{equation*} 51 |

52 |


53 |

54 | This is a forward reference [\ref{ref2}] and another \eqref{ref2} for the 55 | following equation: 56 | $$x+1\over\sqrt{1-x^2}\label{ref2}$$ 57 | More math: 58 | $$x+1\over\sqrt{1-x^2}$$ 59 | Here is a ref inside math: \(\ref{ref2}+1\) and text after it. 60 | 61 | \begin{align} 62 | x& = y_1-y_2+y_3-y_5+y_8-\dots 63 | && \text{by \eqref{ref1}}\\ 64 | & = y'\circ y^* && \text{(by \eqref{ref3})}\\ 65 | & = y(0) y' && \text {by Axiom 1.} 66 | \end{align} 67 | 68 | Here's a bad ref [\ref{ref4}] to a nonexistent label. 69 |

70 |


71 |

72 | An alignment: 73 | \begin{align} 74 | a&=b\label{ref3}\cr 75 | &=c+d 76 | \end{align} 77 | and a starred one: 78 | \begin{align*} 79 | a&=b\cr 80 | &=c+d 81 | \end{align*} 82 | 83 |

84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-loader-config.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Load MathJax with in-line configuration after the page is ready 5 | 6 | 7 | 8 | 9 | 10 | 34 | 35 | 44 | 45 | 46 | 47 | 48 |

Adding MathJax with In-Line Configuration

49 | 50 |

51 | When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are 52 | $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ 53 |

54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-loader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Load MathJax after the page is ready 5 | 6 | 7 | 8 | 9 | 10 | 26 | 27 | 36 | 37 | 38 | 39 | 40 |

Adding MathJax After the Page is Loaded

41 | 42 |

43 | When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are 44 | $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ 45 |

46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-macros.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Example of defining a macro that autoloads an extension 5 | 6 | 7 | 8 | 9 | 10 | 16 | 17 | 27 | 28 | 29 | 30 | 31 | 32 | 43 |
44 | \( 45 | \def\<#1>{\left<#1\right>} 46 | \newcommand{\CC}{\mathbf{C}} 47 | \) 48 |
49 | 50 |

51 | This page uses two different methods to define macros: either putting them 52 | in JavaScript notation in the MathJax configuration, or in TeX notation in 53 | the body of the document. 54 |

55 | 56 |

Some math that used the definitions: 57 | \[ 58 | f\colon\RR\to\RR^3 \hbox{ by } f(t)=\< t+1,{1\over 1+t^2}, \sqrt{t^2+1} > 59 | \] 60 | and 61 | \[ 62 | \{\,z\in\CC \mid z^2 = \bold{\alpha}\,\} 63 | \] 64 | 65 | 66 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-mml.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MathJax MathML Test Page 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |

16 | When 17 | 18 | a0 19 | , 20 | there are two solutions to 21 | 22 | ax2 23 | + bx 24 | + c = 0 25 | 26 | and they are 27 | 28 | x = 29 | 30 | 31 | 32 | 33 | b 34 | ± 35 | 36 | b2 37 | 38 | 4ac 39 | 40 | 41 | 2a 42 | 43 | 44 | . 45 | 46 |

47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /markdeep-slides/lib/mathjax/2.7.5/test/sample-tex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MathJax TeX Test Page 5 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 20 |

21 | When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are 22 | $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ 23 |

24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff/IBMPlexMono-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff/IBMPlexMono-Italic.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff/IBMPlexMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff/IBMPlexMono-Regular.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff2/IBMPlexMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff2/IBMPlexMono-Italic.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff2/IBMPlexMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/complete/woff2/IBMPlexMono-Regular.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/ibm-plex-mono/2.0.0/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'IBM Plex Mono'; 3 | font-style: italic; 4 | font-weight: 400; 5 | src: local("IBM Plex Mono Italic"), 6 | local("IBMPlexMono-Italic"), 7 | url("complete/woff2/IBMPlexMono-Italic.woff2") format("woff2"), 8 | url("complete/woff/IBMPlexMono-Italic.woff") format("woff"); 9 | } 10 | 11 | @font-face { 12 | font-family: 'IBM Plex Mono'; 13 | font-style: normal; 14 | font-weight: 400; 15 | src: local("IBM Plex Mono"), 16 | local("IBMPlexMono"), 17 | url("complete/woff2/IBMPlexMono-Regular.woff2") format("woff2"), 18 | url("complete/woff/IBMPlexMono-Regular.woff") format("woff"); 19 | } 20 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-bold.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-bolditalic.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-italic.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/ttf/iosevka-regular.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Iosevka'; 3 | font-weight: 400; 4 | font-style: normal; 5 | src: url('woff2/iosevka-regular.woff2') format('woff2'), url('woff/iosevka-regular.woff') format('woff'), url('ttf/iosevka-regular.ttf') format('truetype'); 6 | } 7 | 8 | @font-face { 9 | font-family: 'Iosevka'; 10 | font-weight: 400; 11 | font-style: italic; 12 | src: url('woff2/iosevka-italic.woff2') format('woff2'), url('woff/iosevka-italic.woff') format('woff'), url('ttf/iosevka-italic.ttf') format('truetype'); 13 | } 14 | 15 | @font-face { 16 | font-family: 'Iosevka'; 17 | font-weight: 700; 18 | font-style: normal; 19 | src: url('woff2/iosevka-bold.woff2') format('woff2'), url('woff/iosevka-bold.woff') format('woff'), url('ttf/iosevka-bold.ttf') format('truetype'); 20 | } 21 | 22 | @font-face { 23 | font-family: 'Iosevka'; 24 | font-weight: 700; 25 | font-style: italic; 26 | src: url('woff2/iosevka-bolditalic.woff2') format('woff2'), url('woff/iosevka-bolditalic.woff') format('woff'), url('ttf/iosevka-bolditalic.ttf') format('truetype'); 27 | } 28 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-bold.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-bolditalic.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-italic.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff/iosevka-regular.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-bold.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-bolditalic.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-italic.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/iosevka/2.3.1/woff2/iosevka-regular.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-Black.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-Bold.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/OTF/LibreFranklin-BoldItalic.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-Black.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-Bold.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/libre-franklin/1.015/TTF/LibreFranklin-BoldItalic.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/libre-franklin/1.015/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face{ 2 | font-family: 'Libre Franklin'; 3 | font-weight: 700; 4 | font-style: normal; 5 | font-stretch: normal; 6 | src: url('OTF/LibreFranklin-Bold.otf') format('opentype'), 7 | url('TTF/LibreFranklin-Bold.ttf') format('truetype'); 8 | } 9 | 10 | @font-face{ 11 | font-family: 'Libre Franklin'; 12 | font-weight: 700; 13 | font-style: italic; 14 | font-stretch: normal; 15 | src: url('OTF/LibreFranklin-BoldItalic.otf') format('opentype'), 16 | url('TTF/LibreFranklin-BoldItalic.ttf') format('truetype'); 17 | } 18 | 19 | @font-face{ 20 | font-family: 'Libre Franklin'; 21 | font-weight: 900; 22 | font-style: normal; 23 | font-stretch: normal; 24 | src: url('OTF/LibreFranklin-Black.otf') format('opentype'), 25 | url('TTF/LibreFranklin-Black.ttf') format('truetype'); 26 | } 27 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-It.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/OTF/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-BoldIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-BoldIt.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-It.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/TTF/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-Bold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-Bold.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-BoldIt.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-BoldIt.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-It.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-It.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-Regular.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF/OTF/SourceSansPro-Regular.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-Bold.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-BoldIt.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-BoldIt.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-It.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/WOFF2/TTF/SourceSansPro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-sans-pro/2.045R-ro-1.095R-it/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face{ 2 | font-family: 'Source Sans Pro'; 3 | font-weight: 400; 4 | font-style: normal; 5 | font-stretch: normal; 6 | src: url('WOFF2/TTF/SourceSansPro-Regular.ttf.woff2') format('woff2'), 7 | url('WOFF/OTF/SourceSansPro-Regular.otf.woff') format('woff'), 8 | url('OTF/SourceSansPro-Regular.otf') format('opentype'), 9 | url('TTF/SourceSansPro-Regular.ttf') format('truetype'); 10 | } 11 | 12 | @font-face{ 13 | font-family: 'Source Sans Pro'; 14 | font-weight: 400; 15 | font-style: italic; 16 | font-stretch: normal; 17 | src: url('WOFF2/TTF/SourceSansPro-It.ttf.woff2') format('woff2'), 18 | url('WOFF/OTF/SourceSansPro-It.otf.woff') format('woff'), 19 | url('OTF/SourceSansPro-It.otf') format('opentype'), 20 | url('TTF/SourceSansPro-It.ttf') format('truetype'); 21 | } 22 | 23 | @font-face{ 24 | font-family: 'Source Sans Pro'; 25 | font-weight: 700; 26 | font-style: normal; 27 | font-stretch: normal; 28 | src: url('WOFF2/TTF/SourceSansPro-Bold.ttf.woff2') format('woff2'), 29 | url('WOFF/OTF/SourceSansPro-Bold.otf.woff') format('woff'), 30 | url('OTF/SourceSansPro-Bold.otf') format('opentype'), 31 | url('TTF/SourceSansPro-Bold.ttf') format('truetype'); 32 | } 33 | 34 | @font-face{ 35 | font-family: 'Source Sans Pro'; 36 | font-weight: 700; 37 | font-style: italic; 38 | font-stretch: normal; 39 | src: url('WOFF2/TTF/SourceSansPro-BoldIt.ttf.woff2') format('woff2'), 40 | url('WOFF/OTF/SourceSansPro-BoldIt.otf.woff') format('woff'), 41 | url('OTF/SourceSansPro-BoldIt.otf') format('opentype'), 42 | url('TTF/SourceSansPro-BoldIt.ttf') format('truetype'); 43 | } 44 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-Bold.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-BoldIt.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-It.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/OTF/SourceSerifPro-Regular.otf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-Bold.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-BoldIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-BoldIt.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-It.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/TTF/SourceSerifPro-Regular.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-Bold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-Bold.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-BoldIt.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-BoldIt.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-It.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-It.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-Regular.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF/OTF/SourceSerifPro-Regular.otf.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-Bold.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-BoldIt.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-BoldIt.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-It.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/source-serif-pro/3.000R/WOFF2/TTF/SourceSerifPro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/source-serif-pro/3.000R/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face{ 2 | font-family: 'Source Serif Pro'; 3 | font-weight: 400; 4 | font-style: normal; 5 | font-stretch: normal; 6 | src: url('WOFF2/TTF/SourceSerifPro-Regular.ttf.woff2') format('woff2'), 7 | url('WOFF/OTF/SourceSerifPro-Regular.otf.woff') format('woff'), 8 | url('OTF/SourceSerifPro-Regular.otf') format('opentype'), 9 | url('TTF/SourceSerifPro-Regular.ttf') format('truetype'); 10 | } 11 | 12 | @font-face{ 13 | font-family: 'Source Serif Pro'; 14 | font-weight: 400; 15 | font-style: italic; 16 | font-stretch: normal; 17 | src: url('WOFF2/TTF/SourceSerifPro-It.ttf.woff2') format('woff2'), 18 | url('WOFF/OTF/SourceSerifPro-It.otf.woff') format('woff'), 19 | url('OTF/SourceSerifPro-It.otf') format('opentype'), 20 | url('TTF/SourceSerifPro-It.ttf') format('truetype'); 21 | } 22 | 23 | @font-face{ 24 | font-family: 'Source Serif Pro'; 25 | font-weight: 700; 26 | font-style: normal; 27 | font-stretch: normal; 28 | src: url('WOFF2/TTF/SourceSerifPro-Bold.ttf.woff2') format('woff2'), 29 | url('WOFF/OTF/SourceSerifPro-Bold.otf.woff') format('woff'), 30 | url('OTF/SourceSerifPro-Bold.otf') format('opentype'), 31 | url('TTF/SourceSerifPro-Bold.ttf') format('truetype'); 32 | } 33 | 34 | @font-face{ 35 | font-family: 'Source Serif Pro'; 36 | font-weight: 700; 37 | font-style: italic; 38 | font-stretch: normal; 39 | src: url('WOFF2/TTF/SourceSerifPro-BoldIt.ttf.woff2') format('woff2'), 40 | url('WOFF/OTF/SourceSerifPro-BoldIt.otf.woff') format('woff'), 41 | url('OTF/SourceSerifPro-BoldIt.otf') format('opentype'), 42 | url('TTF/SourceSerifPro-BoldIt.ttf') format('truetype'); 43 | } 44 | -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Bold.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-BoldItalic.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Italic.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/TTF/Vollkorn-Regular.ttf -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Bold.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-BoldItalic.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Italic.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF/Vollkorn-Regular.woff -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Bold.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-BoldItalic.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Italic.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/markdeep-slides/lib/webfonts/vollkorn/4.105/WOFF2/Vollkorn-Regular.woff2 -------------------------------------------------------------------------------- /markdeep-slides/lib/webfonts/vollkorn/4.105/webfont.css: -------------------------------------------------------------------------------- 1 | @font-face{ 2 | font-family: 'Vollkorn'; 3 | font-weight: 400; 4 | font-style: normal; 5 | font-stretch: normal; 6 | src: url('WOFF2/Vollkorn-Regular.woff2') format('woff2'), 7 | url('WOFF/Vollkorn-Regular.woff') format('woff'), 8 | url('TTF/Vollkorn-Regular.ttf') format('truetype'); 9 | } 10 | 11 | @font-face{ 12 | font-family: 'Vollkorn'; 13 | font-weight: 400; 14 | font-style: italic; 15 | font-stretch: normal; 16 | src: url('WOFF2/Vollkorn-Italic.woff2') format('woff2'), 17 | url('WOFF/Vollkorn-Italic.woff') format('woff'), 18 | url('TTF/Vollkorn-Italic.ttf') format('truetype'); 19 | } 20 | 21 | @font-face{ 22 | font-family: 'Vollkorn'; 23 | font-weight: 700; 24 | font-style: normal; 25 | font-stretch: normal; 26 | src: url('WOFF2/Vollkorn-Bold.woff2') format('woff2'), 27 | url('WOFF/Vollkorn-Bold.woff') format('woff'), 28 | url('TTF/Vollkorn-Bold.ttf') format('truetype'); 29 | } 30 | 31 | @font-face{ 32 | font-family: 'Vollkorn'; 33 | font-weight: 700; 34 | font-style: italic; 35 | font-stretch: normal; 36 | src: url('WOFF2/Vollkorn-BoldItalic.woff2') format('woff2'), 37 | url('WOFF/Vollkorn-BoldItalic.woff') format('woff'), 38 | url('TTF/Vollkorn-BoldItalic.ttf') format('truetype'); 39 | } 40 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doersino/markdeep-slides/2a58b432c69652c857b755d237ea74e96704d885/screenshot.jpg --------------------------------------------------------------------------------