MathJax-LaTeX
MathJax-LaTeX
Description
MathJax enables enables rendering of embedded LaTeX or MathML in HTML pages. This plugin adds this functionality to WordPress. The MathJax JavaScript is inject on-demand only to those pages which require it. This ensures that MathJax is not loaded for all pages, which will otherwise slow loading down.
The MathJax JavaScript can be delivered from your own server, or you can use the Cloudflare Content Distribution Network (CDN), which is the preferred mechanism as it offers increased speed and stability over hosting the JavaScript and configuring the library yourself.
You may embed latex using a variety of different syntaxes. The shortcode (https://codex.wordpress.org/Shortcode_API) syntax is preferred. So [latex]E=mc^2[/latex] will work out of the box. This also forces loading of MathJax.
Additionally, you can use native MathJax syntax — $$E=mc^2$$ or \(E=mc^2\). However, if this is the only syntax used, the plugin must be explicitly told to load MathJax for the current page. This can be achieved by adding a [mathjax] shortcode anywhere in the post. For posts with both [latex]x[/latex] and $$x$$ syntaxes this is unnecessary.
You can use wp-latex syntax, $latex E=mc^2$. Parameters can be specified as with wp-latex but will be ignored. This means that MathJax-LaTeX should be a drop-in replacement for wp-latex. Because this conflicts with wp-latex, this behaviour is blocked when wp-latex is present, and must be explicitly enabled in the settings.
You can also specify [nomathjax] — this will block mathjax on the current page, regardless of other tags.
MathJax-LaTeX is developed on GitHub.
Copyright
This plugin is copyright Phillip Lord, Newcastle University and is licensed under GPLv2.
Installation
- Unzip the downloaded .zip archive to the
/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Reviews
It does not work
By yecarri on November 2, 2025
My wordpress version is 6.7.2.
I just added a simple equation, it is not displayed at all.
Good Plugin Saved Me
By zulqadar on June 20, 2025
This plugin is working fine in 2025. Just write your equation in $$equation$$. That's all.
enables enables
By samenezes on October 6, 2020
Great! But there are still some bugs.
By Ethan2013 on February 12, 2018
Easy to use.
By Find Hao (FindBlog) on December 10, 2017
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
in header.php to support the inlineMath.Great plugin
By liuyiwp on September 8, 2017
Just Works (TM)
By xpil on March 28, 2017
Great that it's only injected on pages that use it
By cpbotha on September 3, 2016
Up to now I've been using the Simple Mathjax plugin, which also works well, but is not able to inject the mathjax dependency selectively.
On my sites I have math only on a very few pages, and MathJax-LaTeX enables me to enable mathjax only on those pages by just adding the [mathjax] shortcode somewhere.
Importantly, remember to disable Jetpack Beautiful Math, else it can interfere with MathJax-LaTeX. (at the time of writing, Jetpack is still turning math into bitmaps, which is not nearly as beautiful as MathJax on capable browsers).
See https://vxlabs.com/2014/06/16/level-sets-the-practical-10-minute-introduction/ for an example.
Great Plugin
By hcgreier on September 3, 2016
Using the MathJax-LaTeX plugin makes math real simple and beautiful on my site. There may be some tiny "bugs" from time to time, but nothing I could not fix by looking at the docs.mathjax.org.
Using math on your blog never was simpler!
CODING
By khouadri1994 on February 7, 2017
Hi i have a Sensei Woothemes wp plugin that create online courses, and the problem is that it doesn't recognize the latex code to display the maths formulas so it should be modified(code should be integrated to its core files). can annyone help me figure out this thing i am willing to pay 100$ by paypal to the one who figure it out. this is my e-mail : kmehdi@iastate.edu feel free to contact me
Thanks,
Changelog
1.3.13
- PHP code style fixes
1.3.12
- Use version 2.7.9 of MathJax JS
- Add code comments to all variables, functions and parameters.
1.3.11
- Use version 2.7.5 of MathJax JS
1.3.10
- Rename class files, per PHPCS
- Gracefully handle null values in filter_br_tags_on_math. Thanks to Yang Liu.
1.3.9
- Code style changes, per PHPCS 3.3.0 and WPCS 0.14.1
- Use PHP 7 short array syntax
1.3.8
- Code style changes, per PHPCS 3.1.1 and WPCS 0.14
1.3.7
- Update MathJax to 2.7.2
1.3.6
- Update location of MathJax CDN
1.3.5
- Add support for MathJax config via filter
1.3.4
- PHP code cleanup
- Always use https URL for MathJax library
- Updated “tested up to” to 4.3
1.3.3
- Fixed inconsistent version numbers between readme and php file
1.3.2
- Further code clean ups.
1.3.1
- Accessibility Improvements for Admin page
- VIP Coding Standards
- MathML tags enabled in TinyMCE
All code for this release was submitted by users of
this plugin! Thanks to Jared Wenerd and Paul Schreiber.
1.3.0
- Whitelist MathML tags and attributes.
- Sanitization of input and escaping of output.
1.2.1
- Bug fix: custom location was not correctly applied.
- Bug fix: force load was not correctly applied.
1.2
- Admin page was open to attack from third party sites which user was logged
in as admin. - The admin page has been isolated and rewritten.
- All the options have been renamed, which will, unfortunately mean
reconfiguring the plugin. In particular, wp-latex syntax is switched off by
default.
1.1
- Documentation update
- Update test-with documentation for WordPress 3.5.1
- Tested against MathJax2.1
1.0
- Compatibility with MathJax 1.1. Load a default configuration from the MathJax distribution.
- Use the MathJax Content Distribution Network to deliver the javascript library. Offers improved performance and stability.
0.2
- MathJax.js can be loaded form a configurable URL. Defaults to $PLUGIN/MathJax/MathJax.js