|
267 | 267 | if (item.isCR) {this.EndEntry(); this.EndRow(); this.clearEnv(); return false}
|
268 | 268 | this.EndTable(); this.clearEnv();
|
269 | 269 | var mml = MML.mtable.apply(MML,this.table).With(this.arraydef);
|
| 270 | +debug(show(this.arraydef)); |
270 | 271 | if (this.frame.length === 4) {
|
271 | 272 | mml.frame = (this.frame.dashed ? "dashed" : "solid");
|
272 | 273 | } else if (this.frame.length) {
|
|
992 | 993 | Bmatrix: ['Array',null,'\\{','\\}','c'],
|
993 | 994 | vmatrix: ['Array',null,'\\vert','\\vert','c'],
|
994 | 995 | Vmatrix: ['Array',null,'\\Vert','\\Vert','c'],
|
995 |
| - cases: ['Array',null,'\\{','.','ll',null,".1em"], |
| 996 | + cases: ['Array',null,'\\{','.','ll',null,".2em",'T'], |
996 | 997 |
|
997 | 998 | equation: [null,'Equation'],
|
998 | 999 | 'equation*': [null,'Equation'],
|
|
1757 | 1758 | if (open) {array.open = this.convertDelimiter(open)}
|
1758 | 1759 | if (close) {array.close = this.convertDelimiter(close)}
|
1759 | 1760 | if (style === "D") {array.arraydef.displaystyle = true}
|
| 1761 | + else if (style) {array.arraydef.displaystyle = false} |
1760 | 1762 | if (style === "S") {array.arraydef.scriptlevel = 1} // FIXME: should use mstyle?
|
1761 | 1763 | if (raggedHeight) {array.arraydef.useHeight = false}
|
1762 | 1764 | this.Push(begin);
|
|
0 commit comments