]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_parser.C
whichFont down to 5.3%
[lyx.git] / src / mathed / math_parser.C
index c6d24218aab0b8e1a0be408187e5443b9ace795d..5804afc3d0a198a886a593c572005752368cdfdc 100644 (file)
@@ -1093,10 +1093,11 @@ void Parser::parse_into1(MathArray & array, unsigned flags, MathTextCodes code)
                                string const halign = getArg('{', '}');
                                array.push_back(MathAtom(new MathArrayInset(name, valign[0], halign)));
                                parse_lines(array.back(), false, false);
-                       } else if (name == "split" || name == "cases") {
+                       } else if (name == "split" || name == "cases" ||
+                                        name == "gathered" || name == "aligned") {
                                array.push_back(createMathInset(name));
                                parse_lines(array.back(), false, false);
-                       } else if (name == "pmatrix" || name == "bmatrix" ||
+                       } else if (name == "matrix"  || name == "pmatrix" || name == "bmatrix" ||
                                         name == "vmatrix" || name == "Vmatrix") {
                                array.push_back(createMathInset(name));
                                parse_lines2(array.back(), false);