##// END OF EJS Templates
Moved some ipynb ref to test folder, deleted from main.
Moved some ipynb ref to test folder, deleted from main.

File last commit:

r8832:f146a48d
r9233:59510783
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();