From 86c5f1bb56e420f0569c95cdc26e7fb744391145 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Tue, 27 Nov 2012 14:21:54 -0500 Subject: [PATCH] Make \big and its relatives use script or scriptscript fonts (although size is still absolute, as it is in TeX) so that it balances the text weight in scripts. Resolves issue #350. --- unpacked/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 index dff09447f..6d1e64bd5 100644 --- a/unpacked/jax/input/TeX/jax.js +++ b/unpacked/jax/input/TeX/jax.js @@ -1503,7 +1503,7 @@ size = String(size).replace(/(\.\d\d\d).+/,'$1')+"em"; var delim = this.GetDelimiter(name); this.Push(MML.TeXAtom(MML.mo(delim).With({ - minsize: size, maxsize: size, scriptlevel: 0, + minsize: size, maxsize: size, //scriptlevel: 0, fence: true, stretchy: true, symmetric: true })).With({texClass: mclass})); },