The delimiters '<' and '>' can also be used as big delimiters. They are

equivalent to \langle and \rangle, which were already taken into account.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34607 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2010-06-06 18:11:15 +00:00
parent 92d4d7c061
commit fe7196a545
2 changed files with 3 additions and 1 deletions

View File

@ -218,7 +218,7 @@ bool InsetMathBig::isBigInsetDelim(docstring const & delim)
static char const * const delimiters[] = {
"(", ")", "\\{", "\\}", "\\lbrace", "\\rbrace", "[", "]",
"|", "/", "\\slash", "\\|", "\\vert", "\\Vert", "'",
"\\\\", "\\backslash",
"<", ">", "\\\\", "\\backslash",
"\\langle", "\\lceil", "\\lfloor",
"\\rangle", "\\rceil", "\\rfloor",
"\\downarrow", "\\Downarrow",

View File

@ -303,6 +303,8 @@ named_deco_struct deco_table[] = {
{"vert", vert, 0 },
{"Vert", Vert, 0 },
{"'", slash, 1 },
{"<", angle, 0 },
{">", angle, 2 },
{"\\", slash, 1 },
{"backslash", slash, 1 },
{"langle", angle, 0 },