Update 2016-01-30:

I realized that the link to a another blog is no longer working, and that some of the content may not be explained clearly. I will try to address these issues with future update.

Update 2016-04-11:

Some of the wordings have been fixed and the links are working.

Update 2018-07-19:

Fix links and add inline $\LaTeX$ instructions. The article was written before I knew how to do a lot more cool stuff with $\LaTeX$.


Thanks to python module sympy and instructions from this blog, I can now render math equations in this blog.

I know perfectly well the struggle that one has to go through to set up everything perfectly. Yet how reluctant one is when prompted to repeat the painful struggle. I will try to reconstruct the process for your reference. NOTICE: The following instructions are for blogs powered by Jekyll, if this does not applies to you, you may want to seek help elsewhere.

The following steps I am trying to explain is just to one solution to rendering math expressions. There are many choices out there with options like MathJax or MathML, but the general idea for my approach is first generate LaTeX from plain math expressions and then convert LaTeX to MathJax, which could be rendered in most major browsers. One reason for not choosing MathML is that it is not supported in chrome.

The outline is illustrated in the following diagram.

                   Python            LaTeX to
                   sympy             MathJax
                   module            js library
Math Expressions  ========>  LaTeX  ============>  MathJax  ==>  rendered
                                                                on browser

For those of you who already know how to write in LaTeX, you can totally skip the following paragraph on installing python sympy. It's just for people like me who are too lazy to learn LaTeX.

The first step is to generate LaTeX code. Thanks to Python sympy, a module for doing symbolic math, I can totally rely on the skills that I currently have. The sympy.printing.latex.latex function convert any sympy expression to LaTex. I can then copy and paste the code onto my blog markdown source code and enclose them with either <span>$$ (LaTeX here) $$</span> or <div>$$ (LaTeX here) $$</div>.

For python sympy module, install it with python -m pip install sympy. If you don't know what python or pip is, check out my python tutorial later in my blog.

Now that you have latex code for your math expression, there are only two more things to set up.

  • 1. change the markdown rendering machine to redcarpet. Add the following line to your _config.yml file.
markdown: redcarpet
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>


The following math expression Integral(exp(-x**2)) can be rendered as

$$ \int e^{- x^{2}}\, dx $$

Please go to my source code to see how it is actually done.