1if not modules then modules = { } end modules ['math-txt'] = {
2 version = 1.001,
3 comment = "companion to math-ini.mkxl",
4 author = "Hans Hagen & Mikael Sundqvist",
5 copyright = "PRAGMA ADE / ConTeXt Development Team",
6 license = "see context related readme files",
7 dataonly = true,
8}
9
10
11
12return {
13 ["sub"]={
14 ["en"]="count",
15 ["sv"]="Cnedsänkt",
16 ["nl"]="aantal",
17 },
18 ["super"]={
19 ["en"]="charge",
20 ["sv"]="Cupphöjd",
21 ["nl"]="lading",
22 },
23 ["presub"]={
24 ["en"]="weight",
25 ["sv"]="Cnedsänkt",
26 ["nl"]="gewicht",
27 },
28 ["presuper"]={
29 ["en"]="isotope",
30 ["sv"]="Cupphöjd",
31 ["nl"]="CTODO",
32 },
33 ["postsub"]={
34 ["en"]="count",
35 ["sv"]="Cnedsänkt",
36 ["nl"]="aantal",
37 },
38 ["postsuper"]={
39 ["en"]="charge",
40 ["sv"]="Cupphöjd",
41 ["nl"]="lading",
42 },
43 ["prescripts"]={
44 ["en"]="",
45 ["sv"]="",
46 ["nl"]="",
47 },
48 ["end scripts"]={
49 ["en"]="",
50 ["sv"]="",
51 ["nl"]="",
52 },
53 ["postscripts"]={
54 ["en"]="",
55 ["sv"]="",
56 ["nl"]="",
57 },
58 ["endpostcripts"]={
59 ["en"]="",
60 ["sv"]="",
61 ["nl"]="",
62 },
63}
64 |