diff --git a/notebook/static/base/js/utils.js b/notebook/static/base/js/utils.js index 17ccc8e72c..39e757ebda 100644 --- a/notebook/static/base/js/utils.js +++ b/notebook/static/base/js/utils.js @@ -942,7 +942,10 @@ define([ } return $el.map(function(){ // MathJax takes a DOM node: $.map makes `this` the context - return MathJax.Hub.Queue(["Typeset", MathJax.Hub, this]); + return MathJax.Hub.Queue( + ["Typeset", MathJax.Hub, this], + ["resetEquationNumbers",MathJax.InputJax.TeX] + ); }); };