KaTeX vs MathJax (v28)

Revision 28 of this benchmark created on


Preparation HTML

<link href="C:\Users\mengchun\Desktop\KaTeX-0.1.1\test\jasmine\jasmine.css" rel="stylesheet" type="text/css">
<link href="http://xymostech.com/katex/fonts/fonts.css" rel="stylesheet" type="text/css">
<script src="C:\Users\mengchun\Desktop\KaTeX-0.1.1\test\katex-spec.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
// 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.