KaTeX vs MathJax (v33)

Revision 33 of this benchmark created on


Preparation HTML

<link href="http://xymostech.com/katex/katex.min.css" rel="stylesheet" type="text/css">
<link href="http://xymostech.com/katex/fonts/fonts.css" rel="stylesheet" type="text/css">
<script src="http://xymostech.com/katex/katex.min.js"></script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"></script>

<script>
MathJax.Hub.Config({skipStartupTypeset: true});
MathJax.Hub.Configured();
</script>

<div id="math"></div>

Setup

var math = document.getElementById("math");
  var formula = "\\dfrac{-b \\pm \\sqrt{b^2 - 4ac}}{2a}";

Teardown



            math.innerHTML = "";
        
  

Test runner

Ready to run.

Testing in
TestOps/sec
KaTeX
katex.process(formula, math);
math.outerWidth;
ready
MathJax
MathJax.Hub.Queue(["Process", MathJax.Hub, math]);
MathJax.Hub.Queue(function() {
  math.outerWidth;
});
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.