Skip to content

Commit 02261ae

Browse files
committed
Merge remote-tracking branch 'dpvc/issue485' into develop
REsolves issue #485.
2 parents 930c0a7 + 30cb4b3 commit 02261ae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

unpacked/jax/input/TeX/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
MathJax.InputJax.TeX = MathJax.InputJax({
2929
id: "TeX",
30-
version: "2.2.1",
30+
version: "2.2.2",
3131
directory: MathJax.InputJax.directory + "/TeX",
3232
extensionDir: MathJax.InputJax.extensionDir + "/TeX",
3333

unpacked/jax/input/TeX/jax.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@
992992
Bmatrix: ['Array',null,'\\{','\\}','c'],
993993
vmatrix: ['Array',null,'\\vert','\\vert','c'],
994994
Vmatrix: ['Array',null,'\\Vert','\\Vert','c'],
995-
cases: ['Array',null,'\\{','.','ll',null,".1em"],
995+
cases: ['Array',null,'\\{','.','ll',null,".2em",'T'],
996996

997997
equation: [null,'Equation'],
998998
'equation*': [null,'Equation'],
@@ -1757,6 +1757,7 @@
17571757
if (open) {array.open = this.convertDelimiter(open)}
17581758
if (close) {array.close = this.convertDelimiter(close)}
17591759
if (style === "D") {array.arraydef.displaystyle = true}
1760+
else if (style) {array.arraydef.displaystyle = false}
17601761
if (style === "S") {array.arraydef.scriptlevel = 1} // FIXME: should use mstyle?
17611762
if (raggedHeight) {array.arraydef.useHeight = false}
17621763
this.Push(begin);

0 commit comments

Comments
 (0)