]> git.lyx.org Git - lyx.git/blob - src/tex-strings.C
go through horrendous contortions to work around font breakage in every
[lyx.git] / src / tex-strings.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #include "tex-strings.h"
14
15 // this file should perhaps be split into even smaller parts
16
17 char const * string_paragraph_separation[3] = {
18         "indent", "skip", ""
19 };
20
21
22 char const * string_quotes_language[7] = {
23         "english", "swedish", "german", "polish", "french", "danish", ""
24 };
25
26
27 char const * string_papersize[12] = {
28         "Default", "Custom", "letterpaper", "executivepaper", "legalpaper",
29         "a3paper", "a4paper", "a5paper", "b3paper", "b4paper", "b5paper", ""
30 };
31
32
33 char const * string_paperpackages[4] = {
34         "a4", "a4wide", "widemarginsa4", ""
35 };
36
37
38 char const * string_orientation[3] = {
39         "portrait", "landscape", ""
40 };
41
42
43 char const * string_footnotekinds[8] = {
44         "footnote", "margin", "fig", "tab", "alg", "wide-fig", "wide-tab", ""
45 };
46
47
48 char const * string_align[5] = {
49         "block", "left", "right", "center", ""
50 };
51
52
53 // The following was moved from tex-defs.h to here, because tex-defs.h is
54 // used all over. As it happens, that meant that these strings were included
55 // 27 times in the object file. (Asger)
56
57 char const * tex_graphics[] = {"default", "dvips", "dvitops", "emtex",
58                       "ln", "oztex", "textures", "none", ""};
59
60
61 char const * tex_fonts[] = {"default", "ae", "pslatex", "times", "palatino",
62                             "helvet", "avant", "newcent", "bookman", ""};