diff options
author | Pius Uzamere | 2019-06-22 15:17:01 -0400 |
---|---|---|
committer | GitHub | 2019-06-22 15:17:01 -0400 |
commit | abac58cfc5324e310ea573780944e32f9dd487e8 (patch) | |
tree | 0977d78280708048fe842e905df5aa02bb044e82 | |
parent | 33bed47daca3f08c396215415e6ece005970734a (diff) |
Tweak to MathJax example
Added a missing comma and used an actual macro so that the MathJax example runs right out of the box upon a copy/paste.
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1411,9 +1411,9 @@ Reveal.initialize({ math: { mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js', - config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html + config: 'TeX-AMS_HTML-full', // See http://docs.mathjax.org/en/latest/config-files.html // pass other options into `MathJax.Hub.Config()` - TeX: { Macros: macros } + TeX: { Macros: { RR: "{\\bf R}" } } }, dependencies: [ |