www

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

commit 86c5f1bb56e420f0569c95cdc26e7fb744391145
parent ef86d6300907ef43956e50a0ee302ec2ec5a4b68
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Tue, 27 Nov 2012 14:21:54 -0500

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.

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 @@ -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})); },