2013-08-12 15:21:38 +02: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 05:01:35 +02:00
|
|
|
var RevealMath = window.RevealMath || (function(){
|
|
|
|
|
|
|
|
var loaded = false;
|
2013-08-12 15:21:38 +02:00
|
|
|
|
2013-08-13 04:42:14 +02:00
|
|
|
var config = Reveal.getConfig().math || {};
|
|
|
|
config.mode = config.mode || 'TeX-AMS_HTML-full';
|
|
|
|
|
2013-08-12 15:21:38 +02:00
|
|
|
var head = document.querySelector( 'head' );
|
|
|
|
var script = document.createElement( 'script' );
|
|
|
|
script.type = 'text/javascript';
|
2013-08-13 04:42:14 +02:00
|
|
|
script.src = 'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=' + config.mode;
|
2013-08-12 15:21:38 +02:00
|
|
|
|
|
|
|
// Detect when the script has loaded
|
|
|
|
script.onload = onScriptLoad;
|
2013-08-13 05:01:35 +02:00
|
|
|
|
|
|
|
// IE
|
2013-08-12 15:21:38 +02:00
|
|
|
script.onreadystatechange = function() {
|
|
|
|
if ( this.readyState === 'loaded' ) {
|
|
|
|
onScriptLoad.call();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 05:01:35 +02:00
|
|
|
// Normal browsers
|
2013-08-12 15:21:38 +02:00
|
|
|
head.appendChild( script );
|
|
|
|
|
|
|
|
function onScriptLoad() {
|
|
|
|
|
2013-08-13 05:01:35 +02:00
|
|
|
// Conditioned just in case both onload and readystate fire
|
|
|
|
if( loaded === false ) {
|
|
|
|
loaded = true;
|
2013-08-12 15:21:38 +02:00
|
|
|
|
2013-08-13 05:01:35 +02:00
|
|
|
MathJax.Hub.Config({
|
|
|
|
messageStyle: 'none',
|
|
|
|
tex2jax: { inlineMath: [['$','$'],['\\(','\\)']] }
|
|
|
|
});
|
2013-08-13 04:42:14 +02:00
|
|
|
|
2013-08-13 05:01:35 +02: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 04:42:14 +02:00
|
|
|
|
2013-08-13 05:01:35 +02: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 15:21:38 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|