fa20-bt/plugin/math/math.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-08-12 13:21:38 +00:00
/**
* A plugin which enables rendering of math equations inside
* of reveal.js slides. Essentially a thin wrapper for MathJax.
*
* @author Hakim El Hattab
*/
2013-08-13 03:01:35 +00:00
var RevealMath = window.RevealMath || (function(){
var loaded = false;
2013-08-12 13:21:38 +00:00
var config = Reveal.getConfig().math || {};
config.mode = config.mode || 'TeX-AMS_HTML-full';
2013-08-12 13:21:38 +00:00
var head = document.querySelector( 'head' );
var script = document.createElement( 'script' );
script.type = 'text/javascript';
script.src = 'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=' + config.mode;
2013-08-12 13:21:38 +00:00
// Detect when the script has loaded
script.onload = onScriptLoad;
2013-08-13 03:01:35 +00:00
// IE
2013-08-12 13:21:38 +00:00
script.onreadystatechange = function() {
if ( this.readyState === 'loaded' ) {
onScriptLoad.call();
}
}
2013-08-13 03:01:35 +00:00
// Normal browsers
2013-08-12 13:21:38 +00:00
head.appendChild( script );
function onScriptLoad() {
2013-08-13 03:01:35 +00:00
// Conditioned just in case both onload and readystate fire
if( loaded === false ) {
loaded = true;
2013-08-12 13:21:38 +00:00
2013-08-13 03:01:35 +00:00
MathJax.Hub.Config({
messageStyle: 'none',
tex2jax: { inlineMath: [['$','$'],['\\(','\\)']] }
});
2013-08-13 03:01:35 +00:00
// Process any math inside of the current slide when navigating,
// this is needed since it's not possible to typeset equations
// within invisible elements (far future or past).
Reveal.addEventListener( 'slidechanged', function( event ) {
2013-08-13 03:01:35 +00:00
// This will only typeset equations that have not yet been
// processed, as well as equations that have change since
// last being processed.
MathJax.Hub.Update( event.currentSlide );
} );
}
2013-08-12 13:21:38 +00:00
}
})();