www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c03acb6d7dc7d792a543b975294dbdc2bc2fdeba
parent 15c9159cb23f3bed33eaf430e85dd32962987ff1
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Wed,  8 Jul 2015 17:05:57 -0400

Fix problem where automatic numbering affects \binom and friends.  Resolves issue #1194

Diffstat:
Munpacked/jax/input/TeX/jax.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unpacked/jax/input/TeX/jax.js b/unpacked/jax/input/TeX/jax.js @@ -2212,7 +2212,7 @@ mathPalette: function (fence,side) { if (fence === '{' || fence === '}') {fence = "\\"+fence} var D = '{\\bigg'+side+' '+fence+'}', T = '{\\big'+side+' '+fence+'}'; - return TEX.Parse('\\mathchoice'+D+T+T+T).mml(); + return TEX.Parse('\\mathchoice'+D+T+T+T,{}).mml(); }, //