this gives support for missing Bmatrix, which is like {..}

Herbert


-- 
http://www.lyx.org/help/
Index: lib/symbols
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/symbols,v
retrieving revision 1.22
diff -u -r1.22 symbols
--- lib/symbols 5 Aug 2002 16:19:44 -0000       1.22
+++ lib/symbols 9 Aug 2002 20:13:26 -0000
@@ -69,6 +69,7 @@
 tt                oldfont     none
                               
 # matrix environments
+Bmatrix           matrix      none
 Vmatrix           matrix      none
 bmatrix           matrix      none
 matrix            matrix      none
Index: src/mathed/math_amsarrayinset.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/mathed/math_amsarrayinset.C,v
retrieving revision 1.9
diff -u -r1.9 math_amsarrayinset.C
--- src/mathed/math_amsarrayinset.C     2 Aug 2002 14:04:16 -0000       1.9
+++ src/mathed/math_amsarrayinset.C     9 Aug 2002 20:13:48 -0000
@@ -33,6 +33,8 @@
 {
        if (name_ == "bmatrix")
                return "[";
+       if (name_ == "Bmatrix")
+               return "{";
        if (name_ == "vmatrix")
                return "|";
        if (name_ == "Vmatrix")
@@ -47,6 +49,8 @@
 {
        if (name_ == "bmatrix")
                return "]";
+       if (name_ == "Bmatrix")
+               return "}";
        if (name_ == "vmatrix")
                return "|";
        if (name_ == "Vmatrix")

Reply via email to