##// END OF EJS Templates
Added support for speaker notes cells in the any place of the slides and adjacent speaker notes cells.
Added support for speaker notes cells in the any place of the slides and adjacent speaker notes cells.

File last commit:

r8832:f146a48d
r8936:ae88e5d1
Show More
revealmathjax.js
16 lines | 536 B | application/javascript | JavascriptLexer
init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'center', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}
init_mathjax();