Fill in conf.py
# mathjax
extensions.append( 'mathjax' )
# explicitly referrence to mathjax( URL or PATH ( absolute ) )
mathjax_path = 'http://mathjax.connectmv.com/MathJax.js'
mathjax_path +='?config=default' # for mathjax v1.1
In MathJax v1.1, it seems that it is necessary to add the default setting.
You can also install MathJax locally to handle it.
import os.path
mathjax_path = os.path.extenduser('~/lib/java/MathJax/MathJax.js')
Recommended Posts