add latex_deco

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5239 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-09-09 15:53:20 +00:00
parent b261483f24
commit 638d0581e2
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-09-09 John Levon <levon@movementarian.org>
* ControlMath.h:
* ControlMath.C: add latex_deco
2002-09-06 John Levon <levon@movementarian.org>
* ControlMath.C: terminate dots

View File

@ -28,6 +28,17 @@ char const * latex_dots[] = {
int const nr_latex_dots = sizeof(latex_dots) / sizeof(char const *) - 1;
char const * latex_deco[] = {
"widehat", "widetilde", "overbrace", "overleftarrow", "overrightarrow",
"overline", "underbrace", "underline", "underleftarrow", "underrightarrow",
"underleftrightarrow", "overleftrightarrow",
"hat", "acute", "bar", "dot",
"check", "grave", "vec", "ddot",
"breve", "tilde", ""
};
int const nr_latex_deco = sizeof(latex_deco) / sizeof(char const *) - 1;
char const * latex_arrow[] = {
"downarrow", "leftarrow", "Downarrow", "Leftarrow",
"hookleftarrow", "rightarrow", "uparrow", "Rightarrow", "Uparrow",

View File

@ -25,6 +25,8 @@ extern char const * latex_dots[];
extern int const nr_latex_dots;
extern char const * latex_greek[];
extern int const nr_latex_greek;
extern char const * latex_deco[];
extern int const nr_latex_deco;
extern char const * latex_misc[];
extern int const nr_latex_misc;
extern char const * latex_varsz[];