javascript - Change behaviour of rendering in MathJax -


where can change behaviour of mathjax in rendering formulas? need 2 cases:

  1. don't show formulas until formulas parsed.
  2. show formula processed mathjax

mathjax offers configuration options modify equation chunking. quote documentation

eqnchunk: 50

eqnchunkfactor: 1.5

eqnchunkdelay: 100

these values control how “chunky” display of mathematical expressions be; is, how equations updated processed.

eqnchunk number of equations typeset before appear on screen. larger values make less visual flicker equations drawn, mean longer delays before reader sees anything.

eqchunkfactor factor eqnchunk grow after each chunk displayed.

eqchunkdelay time (in milliseconds) delay between chunks (to allow browser respond other user interaction).

set eqnchunk 1, eqnchunkfactor 1, , eqnchunkdelay 10 behavior mathjax v1.1 , below.

these settings can set html , svg output separately. see docs: html-output, svg output.

edit

as davide cervone commented below, set eqnchunk large number (larger number of equations on page) request (1), , set eqnchunk , eqnchunkfactor both 1 request (2).


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -