]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
fix arabtex-related problems (bug 1225 and bug 1404)
[lyx.git] / src / tex-strings.C
1 /**
2  * \file tex-strings.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "tex-strings.h"
15
16
17 // this file should perhaps be split into even smaller parts
18
19 char const * string_paragraph_separation[3] = {
20         "indent", "skip", ""
21 };
22
23
24 char const * string_quotes_language[7] = {
25         "english", "swedish", "german", "polish", "french", "danish", ""
26 };
27
28
29 char const * string_papersize[12] = {
30         "Default", "Custom", "letterpaper", "executivepaper", "legalpaper",
31         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
32 };
33
34
35 char const * string_paperpackages[4] = {
36         "a4", "a4wide", "widemarginsa4", ""
37 };
38
39
40 char const * string_orientation[3] = {
41         "portrait", "landscape", ""
42 };
43
44
45 char const * string_footnotekinds[8] = {
46         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
47 };
48
49
50 char const * string_align[5] = {
51         "block", "left", "right", "center", ""
52 };
53
54
55 // The following was moved from tex-defs.h to here, because tex-defs.h is
56 // used all over. As it happens, that meant that these strings were included
57 // 27 times in the object file. (Asger)
58
59 char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
60                       "ln", "oztex", "textures", "none", ""};
61
62
63 char const * tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
64                             "helvet", "avant", "newcent", "bookman", ""};