summaryrefslogtreecommitdiffhomepage
path: root/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/main.js')
-rw-r--r--js/main.js38
1 files changed, 17 insertions, 21 deletions
diff --git a/js/main.js b/js/main.js
index 3a7a7c4..b25410b 100644
--- a/js/main.js
+++ b/js/main.js
@@ -1,24 +1,3 @@
-Reveal.initialize({
- controls: false,
- math: {
- //mathjax: "node_modules/mathjax/MathJax.js", // local, but crashes sometimes
- mathjax: "https://cdn.jsdelivr.net/gh/mathjax/mathjax@2.7.8/MathJax.js",
- config: "TeX-AMS_HTML-full",
- // pass other options into `MathJax.Hub.Config()`
- TeX: { Macros: { RR: "{\\bf R}" } },
- },
-
- hash: true,
- dependencies: [
- { src: "plugin/markdown/marked.js" },
- { src: "plugin/markdown/markdown.js" },
- { src: "plugin/highlight/highlight.js" },
- { src: "plugin/math/math.js", async: true },
- { src: "plugin/notes/notes.js", async: true },
- { src: "plugin/mouse-pointer/mouse-pointer.js", async: true },
- ],
-});
-
/******************
* KOCH ANIMATION *
******************/
@@ -141,3 +120,20 @@ Reveal.addEventListener("fragmentshown", (event) => {
default:
}
});
+
+Reveal.initialize({
+ controls: false,
+ hash: true,
+ dependencies: [
+ { src: "plugin/markdown/marked.js" },
+ { src: "plugin/markdown/markdown.js" },
+ { src: "plugin/highlight/highlight.js" },
+ { src: "plugin/math/math.js", async: true },
+ { src: "plugin/notes/notes.js", async: true },
+ { src: "plugin/mouse-pointer/mouse-pointer.js", async: true },
+ ],
+ math: {
+ mathjax: "./node_modules/mathjax/es5/tex-svg-full.js",
+ // pass other options into `MathJax.Hub.Config()`
+ },
+});