mathematical 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +24 -45
- data/Rakefile +6 -0
- data/ext/mathematical/extconf.rb +1 -1
- data/ext/mathematical/lasem/Makefile +1037 -0
- data/ext/mathematical/lasem/config.h +87 -0
- data/ext/mathematical/lasem/docs/Makefile +793 -0
- data/ext/mathematical/lasem/docs/reference/Makefile +735 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +1023 -0
- data/ext/mathematical/lasem/itex2mml/Makefile +742 -0
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +6294 -0
- data/ext/mathematical/lasem/itex2mml/y.tab.c +5796 -0
- data/ext/mathematical/lasem/itex2mml/y.tab.h +378 -0
- data/ext/mathematical/lasem/po/Makefile +413 -0
- data/ext/mathematical/lasem/src/Makefile +1322 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +99 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +26 -0
- data/ext/mathematical/lasem/src/lsmmathmlattributes.c +22 -0
- data/ext/mathematical/lasem/src/lsmmathmlenums.c +8 -0
- data/ext/mathematical/lasem/src/lsmmathmlenums.h +7 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +737 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +93 -0
- data/ext/mathematical/lasem/src/lsmmathmlmathelement.c +9 -1
- data/ext/mathematical/lasem/src/lsmmathmlstyle.h +8 -0
- data/ext/mathematical/lasem/src/lsmmathmlstyleelement.c +78 -0
- data/ext/mathematical/lasem/src/lsmmathmlstyleelement.h +7 -0
- data/ext/mathematical/lasem/src/lsmmathmltablerowelement.c +2 -2
- data/ext/mathematical/lasem/src/lsmmathmltraits.h +8 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +1083 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +111 -0
- data/ext/mathematical/lasem/tests/Makefile +765 -0
- data/ext/mathematical/mtex2MML/Makefile +25 -16
- data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
- data/ext/mathematical/mtex2MML/build/mtex2MML.h +1 -1
- data/ext/mathematical/mtex2MML/src/lex.yy.c +3140 -3130
- data/ext/mathematical/mtex2MML/src/main.c +1 -1
- data/ext/mathematical/mtex2MML/src/mtex2MML.h +1 -1
- data/ext/mathematical/mtex2MML/src/mtex2MML.l +4 -1
- data/ext/mathematical/mtex2MML/src/mtex2MML.y +41 -42
- data/ext/mathematical/mtex2MML/src/parse_extras.c +148 -58
- data/ext/mathematical/mtex2MML/src/parse_extras.h +11 -3
- data/ext/mathematical/mtex2MML/src/y.tab.c +5902 -6075
- data/ext/mathematical/mtex2MML/src/y.tab.h +306 -313
- data/ext/mathematical/mtex2MML/tests/basic.c +2 -2
- data/ext/mathematical/mtex2MML/tests/deps/trim/trim.h +1 -1
- data/ext/mathematical/mtex2MML/tests/maliciousness.c +0 -1
- data/ext/mathematical/mtex2MML/tests/mathjax.c +11 -1
- data/ext/mathematical/mtex2MML/tests/numbered_equations.c +28 -1
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +3 -3
- data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
- data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
- data/test/mathematical/fixtures_test.rb +1 -6
- data/test/mathematical/mathjax_test.rb +2 -0
- data/test/test_helper.rb +10 -0
- metadata +28 -11
@@ -1,13 +1,14 @@
|
|
1
|
-
/* A Bison parser, made by GNU Bison 3.
|
1
|
+
/* A Bison parser, made by GNU Bison 2.3. */
|
2
2
|
|
3
|
-
/*
|
3
|
+
/* Skeleton interface for Bison's Yacc-like parsers in C
|
4
4
|
|
5
|
-
Copyright (C) 1984, 1989
|
5
|
+
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
6
|
+
Free Software Foundation, Inc.
|
6
7
|
|
7
|
-
This program is free software
|
8
|
+
This program is free software; you can redistribute it and/or modify
|
8
9
|
it under the terms of the GNU General Public License as published by
|
9
|
-
the Free Software Foundation
|
10
|
-
|
10
|
+
the Free Software Foundation; either version 2, or (at your option)
|
11
|
+
any later version.
|
11
12
|
|
12
13
|
This program is distributed in the hope that it will be useful,
|
13
14
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
@@ -15,7 +16,9 @@
|
|
15
16
|
GNU General Public License for more details.
|
16
17
|
|
17
18
|
You should have received a copy of the GNU General Public License
|
18
|
-
along with this program
|
19
|
+
along with this program; if not, write to the Free Software
|
20
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
21
|
+
Boston, MA 02110-1301, USA. */
|
19
22
|
|
20
23
|
/* As a special exception, you may create a larger work that contains
|
21
24
|
part or all of the Bison parser skeleton and distribute that work
|
@@ -30,310 +33,301 @@
|
|
30
33
|
This special exception was added by the Free Software Foundation in
|
31
34
|
version 2.2 of Bison. */
|
32
35
|
|
33
|
-
|
34
|
-
# define YY_MTEX2MML_YY_Y_TAB_H_INCLUDED
|
35
|
-
/* Debug traces. */
|
36
|
-
#ifndef YYDEBUG
|
37
|
-
# define YYDEBUG 0
|
38
|
-
#endif
|
39
|
-
#if YYDEBUG
|
40
|
-
extern int mtex2MML_yydebug;
|
41
|
-
#endif
|
42
|
-
|
43
|
-
/* Token type. */
|
36
|
+
/* Tokens. */
|
44
37
|
#ifndef YYTOKENTYPE
|
45
38
|
# define YYTOKENTYPE
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
39
|
+
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
40
|
+
know about them. */
|
41
|
+
enum yytokentype {
|
42
|
+
TEXABOVEWITHDELIMS = 258,
|
43
|
+
TEXABOVE = 259,
|
44
|
+
TEXATOPWITHDELIMS = 260,
|
45
|
+
TEXATOP = 261,
|
46
|
+
TEXOVERWITHDELIMS = 262,
|
47
|
+
TEXOVER = 263,
|
48
|
+
CHAR = 264,
|
49
|
+
STARTMATH = 265,
|
50
|
+
STARTDMATH = 266,
|
51
|
+
ENDMATH = 267,
|
52
|
+
MTEXT = 268,
|
53
|
+
MI = 269,
|
54
|
+
MIB = 270,
|
55
|
+
MN = 271,
|
56
|
+
MO = 272,
|
57
|
+
LIMITS = 273,
|
58
|
+
NOLIMITS = 274,
|
59
|
+
SUP = 275,
|
60
|
+
SUB = 276,
|
61
|
+
MROWOPEN = 277,
|
62
|
+
MROWCLOSE = 278,
|
63
|
+
MATHOPEN = 279,
|
64
|
+
MATHCLOSE = 280,
|
65
|
+
MATHORD = 281,
|
66
|
+
MATHPUNCT = 282,
|
67
|
+
VCENTER = 283,
|
68
|
+
LEFT = 284,
|
69
|
+
RIGHT = 285,
|
70
|
+
BIG = 286,
|
71
|
+
BBIG = 287,
|
72
|
+
BIGG = 288,
|
73
|
+
BBIGG = 289,
|
74
|
+
BIGL = 290,
|
75
|
+
BBIGL = 291,
|
76
|
+
BIGGL = 292,
|
77
|
+
BBIGGL = 293,
|
78
|
+
BIGM = 294,
|
79
|
+
BBIGM = 295,
|
80
|
+
BIGGM = 296,
|
81
|
+
BBIGGM = 297,
|
82
|
+
FRAC = 298,
|
83
|
+
TFRAC = 299,
|
84
|
+
DFRAC = 300,
|
85
|
+
CFRAC = 301,
|
86
|
+
GENFRAC = 302,
|
87
|
+
OPERATORNAME = 303,
|
88
|
+
MATHOP = 304,
|
89
|
+
MATHBIN = 305,
|
90
|
+
MATHREL = 306,
|
91
|
+
MATHINNER = 307,
|
92
|
+
MOP = 308,
|
93
|
+
MOL = 309,
|
94
|
+
MOLL = 310,
|
95
|
+
MOF = 311,
|
96
|
+
MOR = 312,
|
97
|
+
PERIODDELIM = 313,
|
98
|
+
COMMADELIM = 314,
|
99
|
+
OTHERDELIM = 315,
|
100
|
+
LEFTDELIM = 316,
|
101
|
+
RIGHTDELIM = 317,
|
102
|
+
MOS = 318,
|
103
|
+
MOB = 319,
|
104
|
+
SQRT = 320,
|
105
|
+
ROOT = 321,
|
106
|
+
OF = 322,
|
107
|
+
LEFTROOT = 323,
|
108
|
+
UPROOT = 324,
|
109
|
+
BINOM = 325,
|
110
|
+
TBINOM = 326,
|
111
|
+
BRACE = 327,
|
112
|
+
BRACK = 328,
|
113
|
+
CHOOSE = 329,
|
114
|
+
DBINOM = 330,
|
115
|
+
UNDER = 331,
|
116
|
+
BUILDREL = 332,
|
117
|
+
OVER = 333,
|
118
|
+
OVERBRACE = 334,
|
119
|
+
OVERBRACKET = 335,
|
120
|
+
UNDERLINE = 336,
|
121
|
+
UNDERBRACE = 337,
|
122
|
+
UNDERBRACKET = 338,
|
123
|
+
UNDEROVER = 339,
|
124
|
+
TENSOR = 340,
|
125
|
+
MULTI = 341,
|
126
|
+
ALIGNATVALUE = 342,
|
127
|
+
ARRAYALIGN = 343,
|
128
|
+
COLUMNALIGN = 344,
|
129
|
+
ARRAY = 345,
|
130
|
+
SPACECUBE = 346,
|
131
|
+
HSPACE = 347,
|
132
|
+
MOVELEFT = 348,
|
133
|
+
MOVERIGHT = 349,
|
134
|
+
RAISE = 350,
|
135
|
+
LOWER = 351,
|
136
|
+
PXSTRING = 352,
|
137
|
+
COLSEP = 353,
|
138
|
+
ROWSEP = 354,
|
139
|
+
ARRAYOPTS = 355,
|
140
|
+
COLLAYOUT = 356,
|
141
|
+
COLALIGN = 357,
|
142
|
+
ROWALIGN = 358,
|
143
|
+
ALIGN = 359,
|
144
|
+
EQROWS = 360,
|
145
|
+
EQCOLS = 361,
|
146
|
+
ROWLINES = 362,
|
147
|
+
COLLINES = 363,
|
148
|
+
FRAME = 364,
|
149
|
+
PADDING = 365,
|
150
|
+
ATTRLIST = 366,
|
151
|
+
ITALICS = 367,
|
152
|
+
SANS = 368,
|
153
|
+
TT = 369,
|
154
|
+
ENCLOSE = 370,
|
155
|
+
ENCLOSENOTATION = 371,
|
156
|
+
ENCLOSEATTR = 372,
|
157
|
+
ENCLOSETEXT = 373,
|
158
|
+
BOLD = 374,
|
159
|
+
BOXED = 375,
|
160
|
+
FBOX = 376,
|
161
|
+
HBOX = 377,
|
162
|
+
MBOX = 378,
|
163
|
+
BCANCELED = 379,
|
164
|
+
XCANCELED = 380,
|
165
|
+
CANCELEDTO = 381,
|
166
|
+
NOT = 382,
|
167
|
+
SLASHED = 383,
|
168
|
+
PMB = 384,
|
169
|
+
SCR = 385,
|
170
|
+
RM = 386,
|
171
|
+
BB = 387,
|
172
|
+
ST = 388,
|
173
|
+
END = 389,
|
174
|
+
BBLOWERCHAR = 390,
|
175
|
+
BBUPPERCHAR = 391,
|
176
|
+
BBDIGIT = 392,
|
177
|
+
CALCHAR = 393,
|
178
|
+
FRAKCHAR = 394,
|
179
|
+
CAL = 395,
|
180
|
+
FRAK = 396,
|
181
|
+
CLAP = 397,
|
182
|
+
LLAP = 398,
|
183
|
+
RLAP = 399,
|
184
|
+
ROWOPTS = 400,
|
185
|
+
TEXTSIZE = 401,
|
186
|
+
OLDSTYLE = 402,
|
187
|
+
SCSTY = 403,
|
188
|
+
SCSIZE = 404,
|
189
|
+
SCSCSIZE = 405,
|
190
|
+
TINY = 406,
|
191
|
+
TTINY = 407,
|
192
|
+
SMALL = 408,
|
193
|
+
NORMALSIZE = 409,
|
194
|
+
LARGE = 410,
|
195
|
+
LLARGE = 411,
|
196
|
+
LLLARGE = 412,
|
197
|
+
HUGE = 413,
|
198
|
+
HHUGE = 414,
|
199
|
+
DISPLAY = 415,
|
200
|
+
TEXTSTY = 416,
|
201
|
+
TEXTBOX = 417,
|
202
|
+
TEXTSTRING = 418,
|
203
|
+
COLORSTRING = 419,
|
204
|
+
STYLESTRING = 420,
|
205
|
+
VERBBOX = 421,
|
206
|
+
VERBSTRING = 422,
|
207
|
+
ACUTE = 423,
|
208
|
+
GRAVE = 424,
|
209
|
+
BREVE = 425,
|
210
|
+
MATHRING = 426,
|
211
|
+
XMLSTRING = 427,
|
212
|
+
CELLOPTS = 428,
|
213
|
+
ROWSPAN = 429,
|
214
|
+
COLSPAN = 430,
|
215
|
+
THINSPACE = 431,
|
216
|
+
ENSPACE = 432,
|
217
|
+
MEDSPACE = 433,
|
218
|
+
THICKSPACE = 434,
|
219
|
+
QUAD = 435,
|
220
|
+
QQUAD = 436,
|
221
|
+
NEGSPACE = 437,
|
222
|
+
NEGMEDSPACE = 438,
|
223
|
+
NEGTHICKSPACE = 439,
|
224
|
+
STRUT = 440,
|
225
|
+
MATHSTRUT = 441,
|
226
|
+
SMASH = 442,
|
227
|
+
PHANTOM = 443,
|
228
|
+
HPHANTOM = 444,
|
229
|
+
VPHANTOM = 445,
|
230
|
+
HREF = 446,
|
231
|
+
UNKNOWNCHAR = 447,
|
232
|
+
EMPTYMROW = 448,
|
233
|
+
STATLINE = 449,
|
234
|
+
TOOLTIP = 450,
|
235
|
+
TOGGLE = 451,
|
236
|
+
TOGGLESTART = 452,
|
237
|
+
TOGGLEEND = 453,
|
238
|
+
FGHIGHLIGHT = 454,
|
239
|
+
BGHIGHLIGHT = 455,
|
240
|
+
COLORBOX = 456,
|
241
|
+
SPACE = 457,
|
242
|
+
NUMBER = 458,
|
243
|
+
INTONE = 459,
|
244
|
+
INTTWO = 460,
|
245
|
+
INTTHREE = 461,
|
246
|
+
OVERLEFTARROW = 462,
|
247
|
+
OVERLEFTRIGHTARROW = 463,
|
248
|
+
OVERRIGHTARROW = 464,
|
249
|
+
UNDERLEFTARROW = 465,
|
250
|
+
UNDERLEFTRIGHTARROW = 466,
|
251
|
+
UNDERRIGHTARROW = 467,
|
252
|
+
BAR = 468,
|
253
|
+
WIDEBAR = 469,
|
254
|
+
SKEW = 470,
|
255
|
+
VEC = 471,
|
256
|
+
WIDEVEC = 472,
|
257
|
+
HAT = 473,
|
258
|
+
WIDEHAT = 474,
|
259
|
+
CHECK = 475,
|
260
|
+
WIDECHECK = 476,
|
261
|
+
TILDE = 477,
|
262
|
+
WIDETILDE = 478,
|
263
|
+
DOT = 479,
|
264
|
+
DDOT = 480,
|
265
|
+
DDDOT = 481,
|
266
|
+
DDDDOT = 482,
|
267
|
+
UNARYMINUS = 483,
|
268
|
+
UNARYPLUS = 484,
|
269
|
+
BEGINENV = 485,
|
270
|
+
ENDENV = 486,
|
271
|
+
EQUATION = 487,
|
272
|
+
EQUATION_STAR = 488,
|
273
|
+
EQALIGN = 489,
|
274
|
+
EQALIGNNO = 490,
|
275
|
+
MATRIX = 491,
|
276
|
+
PMATRIX = 492,
|
277
|
+
BMATRIX = 493,
|
278
|
+
BBMATRIX = 494,
|
279
|
+
VMATRIX = 495,
|
280
|
+
VVMATRIX = 496,
|
281
|
+
SUBARRAY = 497,
|
282
|
+
SVG = 498,
|
283
|
+
ENDSVG = 499,
|
284
|
+
SMALLMATRIX = 500,
|
285
|
+
CASES = 501,
|
286
|
+
ALIGNED = 502,
|
287
|
+
ALIGNENV = 503,
|
288
|
+
ALIGNENV_STAR = 504,
|
289
|
+
ALIGNAT = 505,
|
290
|
+
ALIGNAT_STAR = 506,
|
291
|
+
ALIGNEDAT = 507,
|
292
|
+
GATHERED = 508,
|
293
|
+
EQNARRAY = 509,
|
294
|
+
EQNARRAY_STAR = 510,
|
295
|
+
MULTLINE = 511,
|
296
|
+
MULTLINE_STAR = 512,
|
297
|
+
GATHER_STAR = 513,
|
298
|
+
GATHER = 514,
|
299
|
+
SUBSTACK = 515,
|
300
|
+
SIDESET = 516,
|
301
|
+
BMOD = 517,
|
302
|
+
PMOD = 518,
|
303
|
+
POD = 519,
|
304
|
+
RMCHAR = 520,
|
305
|
+
SCRCHAR = 521,
|
306
|
+
PMBCHAR = 522,
|
307
|
+
COLOR = 523,
|
308
|
+
BGCOLOR = 524,
|
309
|
+
BBOX = 525,
|
310
|
+
XARROW = 526,
|
311
|
+
OPTARGOPEN = 527,
|
312
|
+
OPTARGCLOSE = 528,
|
313
|
+
MTEXNUM = 529,
|
314
|
+
RAISEBOX = 530,
|
315
|
+
NEG = 531,
|
316
|
+
LATEXSYMBOL = 532,
|
317
|
+
TEXSYMBOL = 533,
|
318
|
+
VARINJLIM = 534,
|
319
|
+
VARLIMINF = 535,
|
320
|
+
VARLIMSUP = 536,
|
321
|
+
VARPROJLIM = 537
|
322
|
+
};
|
329
323
|
#endif
|
330
324
|
/* Tokens. */
|
331
|
-
#define
|
332
|
-
#define
|
333
|
-
#define
|
334
|
-
#define
|
335
|
-
#define
|
336
|
-
#define
|
325
|
+
#define TEXABOVEWITHDELIMS 258
|
326
|
+
#define TEXABOVE 259
|
327
|
+
#define TEXATOPWITHDELIMS 260
|
328
|
+
#define TEXATOP 261
|
329
|
+
#define TEXOVERWITHDELIMS 262
|
330
|
+
#define TEXOVER 263
|
337
331
|
#define CHAR 264
|
338
332
|
#define STARTMATH 265
|
339
333
|
#define STARTDMATH 266
|
@@ -609,16 +603,15 @@ extern int mtex2MML_yydebug;
|
|
609
603
|
#define VARLIMSUP 536
|
610
604
|
#define VARPROJLIM 537
|
611
605
|
|
612
|
-
|
606
|
+
|
607
|
+
|
608
|
+
|
613
609
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
614
610
|
typedef int YYSTYPE;
|
615
|
-
# define
|
611
|
+
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
616
612
|
# define YYSTYPE_IS_DECLARED 1
|
613
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
617
614
|
#endif
|
618
615
|
|
619
|
-
|
620
616
|
extern YYSTYPE mtex2MML_yylval;
|
621
617
|
|
622
|
-
int mtex2MML_yyparse (char **ret_str);
|
623
|
-
|
624
|
-
#endif /* !YY_MTEX2MML_YY_Y_TAB_H_INCLUDED */
|