GitHub Pages with MathJax
So I thought I’d write a line about how it is to have a first experience in using GitHub Pages and enabling MathJax. I had not used Jekyll at all before, so this took me a little bit of reading. So here it is.
Background
GitHub Pages uses Jekyll to create static web pages. Jekyll parses markdown files, and those files may contain maths.
By default, Jekyll uses the markdown parser kramdown, and it identifies call math and make sure that it is tagged for MathJax to process. However, the actual rendering of the MathJax engine is not active by default.
The easiest way to activate MathJax is by writing a <script>
tag that tells the web browser to feth MathJax and process the whole page. This is well described on their getting started page. That script tag should be in the <head>
section of the page, which in Jekyll is specified in the layout definitions, which in turn is part of the theme. So we must configure the theme to make it ave the correct MathJax include-links.
How to
- Create a github pages repository. Follow instructions here. Initialize it as empty.
- Select a theme. I chose minimal, also called
jekyll-theme-minimal
. Documentation can be found here. Think of it like this: when GitHub Pages processes your repo (using Jekyll) to create the static pages, it will look into directories such as_layouts
and_includes
to compile the page. If the file is not available in your repo Jekyll will fall back to the files in the Theme (i.e. that linked repo with the documentation). Thus, all config is made by overriding files from the base repo. - Copy the
_layout/default.html
file from the source repo and into your own repo. Inside the<head>
tag, write the code{% include mathjax.html %}
. This will utilize the jekyll include mechanism to insert the content of thatmathjax.html
file in the page head of all your pages. - Create the file
_includes/mathjax.html
with the<script src=...>
as described in the MathJax documentation. Now all your pages are MathJax powered! - Create
index.md
and write some math. Commit it. Then read your page atusername.github.io
or whatever page name you have.
Now it is done! So here is an equation: \(0=e^{-i\pi}+1\).
Remarks
By default MathJax uses $$block math mode$$
and \(inline math\)
, which is not the usual syntax in LaTeX.
Full details in the MathJax documentation
You could incorporate some MathJax configuration in the file _includes/mathjax.html
to choose other delimiters.
To complicate matters more, kramdown
interprets backslash as a line break, so to write \(inline math\)
you actually have to write \\(inline math\\)
. So you can see why people may choose to do some config here.
Most other guides also use the front matter to set a flag usemath: true
or similar, and then use { if page.usemath }{% include ....%}{ end if }
etc. I guess this can be good for performance, so that your broswer only fetch that javascript file when needed. On the other hand, you need to handle that front matter for every page, and that seems like a big hassle. So I don’t do that.
More remarks (2021-02-15)
Actually, in default kramdown
settings, one just uses $$
both for inline and block delimited maths. Inside such a block, there is no need for escape squences, so that makes life MUCH easier. See more here https://kramdown.gettalong.org/syntax.html#math-blocks. Finally, kramdown outputs the relevant delimiters and escapes for MathJax to interpret.
Acknowledgements
I did read, learn, and steal a bit from various posts online. These where the most important ones:
- Ben Landsdell 2016: (http://benlansdell.github.io/computing/mathjax/)
- Brendan A R Sechter 2016: (http://sgeos.github.io/github/jekyll/2016/08/21/adding_mathjax_to_a_jekyll_github_pages_blog.html)
- Alan Duan 2017: (https://alan97.github.io/random/mathjax/)