mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
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:
parent
b261483f24
commit
638d0581e2
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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[];
|
||||
|
Loading…
Reference in New Issue
Block a user