Skip to content

Commit

Permalink
Merge pull request hakimel#2090 from bnjmnt4n/math
Browse files Browse the repository at this point in the history
Allow users to customise MathJax options.
  • Loading branch information
hakimel authored Oct 8, 2018
2 parents e9dd431 + 49e8c90 commit ae41af9
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 12 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1286,6 +1286,8 @@ Reveal.initialize({
math: {
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
// pass other options into `MathJax.Hub.Config()`
TeX: { Macros: macros }
},

dependencies: [
Expand Down
39 changes: 28 additions & 11 deletions plugin/math/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,26 @@
var RevealMath = window.RevealMath || (function(){

var options = Reveal.getConfig().math || {};
options.mathjax = options.mathjax || 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js';
options.config = options.config || 'TeX-AMS_HTML-full';
options.tex2jax = options.tex2jax || {
inlineMath: [['$','$'],['\\(','\\)']] ,
skipTags: ['script','noscript','style','textarea','pre'] };
var mathjax = options.mathjax || 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js';
var config = options.config || 'TeX-AMS_HTML-full';
var url = mathjax + '?config=' + config;

loadScript( options.mathjax + '?config=' + options.config, function() {
var defaultOptions = {
messageStyle: 'none',
tex2jax: {
inlineMath: [ [ '$', '$' ], [ '\\(', '\\)' ] ],
skipTags: [ 'script', 'noscript', 'style', 'textarea', 'pre' ]
},
skipStartupTypeset: true
};

MathJax.Hub.Config({
messageStyle: 'none',
tex2jax: options.tex2jax,
skipStartupTypeset: true
});
defaults( options, defaultOptions );
defaults( options.tex2jax, defaultOptions.tex2jax );
options.mathjax = options.config = null;

loadScript( url, function() {

MathJax.Hub.Config( options );

// Typeset followed by an immediate reveal.js layout since
// the typesetting process could affect slide height
Expand All @@ -35,6 +42,16 @@ var RevealMath = window.RevealMath || (function(){

} );

function defaults( options, defaultOptions ) {

for ( var i in defaultOptions ) {
if ( !options.hasOwnProperty( i ) ) {
options[i] = defaultOptions[i];
}
}

}

function loadScript( url, callback ) {

var head = document.querySelector( 'head' );
Expand Down
24 changes: 23 additions & 1 deletion test/examples/math.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ <h3>Maxwell&#8217;s Equations</h3>
\]
</section>

<section>
<h3>TeX Macros</h3>

Here is a common vector space:
\[L^2(\R) = \set{u : \R \to \R}{\int_\R |u|^2 &lt; +\infty}\]
used in functional analysis.
</section>

<section>
<section>
<h3>The Lorenz Equations</h3>
Expand Down Expand Up @@ -153,6 +161,14 @@ <h3>Maxwell&#8217;s Equations</h3>
\]
</div>
</section>

<section>
<h3>TeX Macros</h3>

Here is a common vector space:
\[L^2(\R) = \set{u : \R \to \R}{\int_\R |u|^2 &lt; +\infty}\]
used in functional analysis.
</section>
</section>

</div>
Expand All @@ -169,7 +185,13 @@ <h3>Maxwell&#8217;s Equations</h3>

math: {
// mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
config: 'TeX-AMS_HTML-full'
config: 'TeX-AMS_HTML-full',
TeX: {
Macros: {
R: '\\mathbb{R}',
set: [ '\\left\\{#1 \\; ; \\; #2\\right\\}', 2 ]
}
}
},

dependencies: [
Expand Down

0 comments on commit ae41af9

Please sign in to comment.