mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Add missing math delim decorations
This avoids a message "Deco was not found. Programming error?" on stderr. The added decorations are defined by amsmath, and equivalent to \vert (single vertical bar) and \Vert (double vertical bar), respectively. They are used to distinguish the single and paired versions (for use with \left and \right). These symbols should cause amsmath to be loaded, but this would be too dangerous to implement now.
This commit is contained in:
parent
f4dd0ba561
commit
9130bdb5ec
@ -315,7 +315,11 @@ named_deco_struct deco_table[] = {
|
||||
{"/", slash, 0 },
|
||||
{"slash", slash, 0 },
|
||||
{"vert", vert, 0 },
|
||||
{"lvert", vert, 0 },
|
||||
{"rvert", vert, 0 },
|
||||
{"Vert", Vert, 0 },
|
||||
{"lVert", Vert, 0 },
|
||||
{"rVert", Vert, 0 },
|
||||
{"'", slash, 1 },
|
||||
{"<", angle, 0 },
|
||||
{">", angle, 2 },
|
||||
|
Loading…
Reference in New Issue
Block a user