Skip to content
This repository was archived by the owner on Nov 24, 2020. It is now read-only.

GitbookIO/plugin-mathjax

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b84b6b8 Â· Feb 20, 2017

History

64 Commits
Oct 13, 2016
Feb 20, 2017
Oct 13, 2016
Oct 12, 2016
Oct 12, 2016
Oct 12, 2016
Apr 20, 2014
Nov 13, 2015
Feb 20, 2017
Feb 20, 2017
Feb 20, 2017
Feb 20, 2017

Repository files navigation

Math integration with GitBook

This plugin uses MathJax to display Math/TeX formula. This is an official plugin. Versions >=0.1.0 require GitBook >=2.0.0.

How to use it?

Add it to your book.json configuration:

{
    "plugins": ["mathjax"]
}

Install your plugins using:

$ gitbook install ./

You can now add TeX formula to your book using the {% math %} block:

When {% math %}a \ne 0{% endmath %}, there are two solutions to {% math %}(ax^2 + bx + c = 0){% endmath %} and they are {% math %}x = {-b \pm \sqrt{b^2-4ac} \over 2a}.{% endmath %}

You can also use the shortcut $$:

When $$a \ne 0$$, there are two solutions to $$(ax^2 + bx + c = 0)$$ and they are $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$

Configuration

You can force the use of svg pre-processed by adding to your book.json:

{
    "pluginsConfig": {
        "mathjax":{
            "forceSVG": true
        }
    }
}