KaTeX vs MathJax (svg) (v26)

Revision 26 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?&delayStartupUntil=configured"></script>

<script>
MathJax.Hub.Config({skipStartupTypeset: true,
  jax: ["input/TeX","output/SVG"],
  extensions: ["tex2jax.js","MathMenu.js","MathZoom.js"],
  TeX: {
    extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
  }
});
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
// async test
math.innerHTML = "<script type='math/tex'>" + formula + "</script>";
MathJax.Hub.Queue(["Process", MathJax.Hub, math]);
MathJax.Hub.Queue(function() {
  math.outerWidth;
  deferred.resolve();
});
ready

Revisions

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