##// END OF EJS Templates
Added complete support for notes, with names acordingly with the title of the notebook currently being converted.
Added complete support for notes, with names acordingly with the title of the notebook currently being converted.

File last commit:

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