mathematical 0.6.2 → 1.0.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.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +48 -12
  3. data/Rakefile +3 -2
  4. data/ext/mathematical/cairo_callbacks.c +25 -0
  5. data/ext/mathematical/cairo_callbacks.h +7 -0
  6. data/ext/mathematical/extconf.rb +11 -11
  7. data/ext/mathematical/lasem/src/lsmmathmldocument.c +3 -0
  8. data/ext/mathematical/lasem/src/lsmmathmlencloseelement.c +142 -0
  9. data/ext/mathematical/lasem/src/lsmmathmlencloseelement.h +64 -0
  10. data/ext/mathematical/lasem/src/lsmmathmlenums.c +35 -0
  11. data/ext/mathematical/lasem/src/lsmmathmlenums.h +25 -1
  12. data/ext/mathematical/lasem/src/lsmmathmlpaddedelement.c +79 -0
  13. data/ext/mathematical/lasem/src/lsmmathmlpaddedelement.h +5 -0
  14. data/ext/mathematical/lasem/src/lsmmathmlstyleelement.c +6 -0
  15. data/ext/mathematical/lasem/src/lsmmathmltableelement.c +5 -5
  16. data/ext/mathematical/lasem/src/lsmmathmltraits.c +24 -0
  17. data/ext/mathematical/lasem/src/lsmmathmltraits.h +1 -0
  18. data/ext/mathematical/lasem/src/lsmmathmltypes.h +1 -0
  19. data/ext/mathematical/lasem/src/lsmmathmlutils.h +9 -2
  20. data/ext/mathematical/lasem/src/lsmmathmlview.c +283 -11
  21. data/ext/mathematical/lasem/src/lsmmathmlview.h +13 -0
  22. data/ext/mathematical/lasem_overrides.c +40 -0
  23. data/ext/mathematical/lasem_overrides.h +23 -0
  24. data/ext/mathematical/mathematical.c +119 -127
  25. data/ext/mathematical/mathematical.h +24 -0
  26. data/ext/mathematical/mtex2MML/ext/extconf.rb +1 -1
  27. data/ext/mathematical/mtex2MML/src/lex.yy.c +4488 -4032
  28. data/ext/mathematical/mtex2MML/src/mtex2MML.h +3 -0
  29. data/ext/mathematical/mtex2MML/src/parse_extras.c +14 -5
  30. data/ext/mathematical/mtex2MML/src/parse_extras.h +3 -1
  31. data/ext/mathematical/mtex2MML/src/string_extras.c +39 -0
  32. data/ext/mathematical/mtex2MML/src/string_extras.h +7 -0
  33. data/ext/mathematical/mtex2MML/src/y.tab.c +4408 -3175
  34. data/ext/mathematical/mtex2MML/src/y.tab.h +500 -422
  35. data/lib/mathematical.rb +112 -2
  36. data/lib/mathematical/corrections.rb +2 -2
  37. data/lib/mathematical/version.rb +2 -2
  38. data/mathematical.gemspec +4 -4
  39. data/test/mathematical/basic_test.rb +1 -1
  40. data/test/mathematical/corrections_test.rb +1 -1
  41. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  42. data/test/mathematical/fixtures/png/numeric_test_2.png +0 -0
  43. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  44. data/test/mathematical/fixtures_test.rb +7 -7
  45. data/test/mathematical/maliciousness_test.rb +44 -17
  46. data/test/mathematical/mathjax_test.rb +5 -13
  47. data/test/mathematical/mathml_test.rb +3 -3
  48. data/test/mathematical/multiples_test.rb +68 -0
  49. data/test/mathematical/performance_test.rb +2 -2
  50. data/test/mathematical/png_test.rb +5 -5
  51. data/test/test_helper.rb +36 -1
  52. metadata +26 -11
  53. data/lib/mathematical/render.rb +0 -74
@@ -49,217 +49,256 @@
49
49
  STARTMATH = 265,
50
50
  STARTDMATH = 266,
51
51
  ENDMATH = 267,
52
- MI = 268,
53
- MIB = 269,
54
- MN = 270,
55
- MO = 271,
56
- LIMITS = 272,
57
- NOLIMITS = 273,
58
- SUP = 274,
59
- SUB = 275,
60
- MROWOPEN = 276,
61
- MROWCLOSE = 277,
62
- LEFT = 278,
63
- RIGHT = 279,
64
- BIG = 280,
65
- BBIG = 281,
66
- BIGG = 282,
67
- BBIGG = 283,
68
- BIGL = 284,
69
- BBIGL = 285,
70
- BIGGL = 286,
71
- BBIGGL = 287,
72
- BIGM = 288,
73
- BBIGM = 289,
74
- BIGGM = 290,
75
- BBIGGM = 291,
76
- FRAC = 292,
77
- TFRAC = 293,
78
- DFRAC = 294,
79
- OPERATORNAME = 295,
80
- MATHOP = 296,
81
- MATHBIN = 297,
82
- MATHREL = 298,
83
- MOP = 299,
84
- MOL = 300,
85
- MOLL = 301,
86
- MOF = 302,
87
- MOR = 303,
88
- PERIODDELIM = 304,
89
- OTHERDELIM = 305,
90
- LEFTDELIM = 306,
91
- RIGHTDELIM = 307,
92
- MOS = 308,
93
- MOB = 309,
94
- SQRT = 310,
95
- ROOT = 311,
96
- BINOM = 312,
97
- TBINOM = 313,
98
- BRACE = 314,
99
- BRACK = 315,
100
- CHOOSE = 316,
101
- DBINOM = 317,
102
- UNDER = 318,
103
- OVER = 319,
104
- OVERBRACE = 320,
105
- OVERBRACKET = 321,
106
- UNDERLINE = 322,
107
- UNDERBRACE = 323,
108
- UNDERBRACKET = 324,
109
- UNDEROVER = 325,
110
- TENSOR = 326,
111
- MULTI = 327,
112
- ALIGNATVALUE = 328,
113
- ARRAYALIGN = 329,
114
- COLUMNALIGN = 330,
115
- ARRAY = 331,
116
- PXSTRING = 332,
117
- COLSEP = 333,
118
- ROWSEP = 334,
119
- ARRAYOPTS = 335,
120
- COLLAYOUT = 336,
121
- COLALIGN = 337,
122
- ROWALIGN = 338,
123
- ALIGN = 339,
124
- EQROWS = 340,
125
- EQCOLS = 341,
126
- ROWLINES = 342,
127
- COLLINES = 343,
128
- FRAME = 344,
129
- PADDING = 345,
130
- ATTRLIST = 346,
131
- ITALICS = 347,
132
- SANS = 348,
133
- TT = 349,
134
- BOLD = 350,
135
- BOXED = 351,
136
- BOXSTRING = 352,
137
- FBOX = 353,
138
- HBOX = 354,
139
- MBOX = 355,
140
- BCANCELED = 356,
141
- XCANCELED = 357,
142
- CANCELEDTO = 358,
143
- NOT = 359,
144
- SLASHED = 360,
145
- PMB = 361,
146
- SCR = 362,
147
- RM = 363,
148
- BB = 364,
149
- ST = 365,
150
- END = 366,
151
- BBLOWERCHAR = 367,
152
- BBUPPERCHAR = 368,
153
- BBDIGIT = 369,
154
- CALCHAR = 370,
155
- FRAKCHAR = 371,
156
- CAL = 372,
157
- FRAK = 373,
158
- CLAP = 374,
159
- LLAP = 375,
160
- RLAP = 376,
161
- ROWOPTS = 377,
162
- TEXTSIZE = 378,
163
- SCSIZE = 379,
164
- SCSCSIZE = 380,
165
- DISPLAY = 381,
166
- TEXTSTY = 382,
167
- TEXTBOX = 383,
168
- TEXTSTRING = 384,
169
- VERBBOX = 385,
170
- VERBSTRING = 386,
171
- ACUTE = 387,
172
- GRAVE = 388,
173
- BREVE = 389,
174
- MATHRING = 390,
175
- XMLSTRING = 391,
176
- CELLOPTS = 392,
177
- ROWSPAN = 393,
178
- COLSPAN = 394,
179
- THINSPACE = 395,
180
- MEDSPACE = 396,
181
- THICKSPACE = 397,
182
- QUAD = 398,
183
- QQUAD = 399,
184
- NEGSPACE = 400,
185
- NEGMEDSPACE = 401,
186
- NEGTHICKSPACE = 402,
187
- PHANTOM = 403,
188
- HREF = 404,
189
- UNKNOWNCHAR = 405,
190
- EMPTYMROW = 406,
191
- STATLINE = 407,
192
- TOOLTIP = 408,
193
- TOGGLE = 409,
194
- TOGGLESTART = 410,
195
- TOGGLEEND = 411,
196
- FGHIGHLIGHT = 412,
197
- BGHIGHLIGHT = 413,
198
- COLORBOX = 414,
199
- SPACE = 415,
200
- PIXSIZE = 416,
201
- INTONE = 417,
202
- INTTWO = 418,
203
- INTTHREE = 419,
204
- OVERLEFTARROW = 420,
205
- OVERLEFTRIGHTARROW = 421,
206
- OVERRIGHTARROW = 422,
207
- UNDERLEFTARROW = 423,
208
- UNDERLEFTRIGHTARROW = 424,
209
- UNDERRIGHTARROW = 425,
210
- BAR = 426,
211
- WIDEBAR = 427,
212
- VEC = 428,
213
- WIDEVEC = 429,
214
- HAT = 430,
215
- WIDEHAT = 431,
216
- CHECK = 432,
217
- WIDECHECK = 433,
218
- TILDE = 434,
219
- WIDETILDE = 435,
220
- DOT = 436,
221
- DDOT = 437,
222
- DDDOT = 438,
223
- DDDDOT = 439,
224
- UNARYMINUS = 440,
225
- UNARYPLUS = 441,
226
- BEGINENV = 442,
227
- ENDENV = 443,
228
- MATRIX = 444,
229
- PMATRIX = 445,
230
- BMATRIX = 446,
231
- BBMATRIX = 447,
232
- VMATRIX = 448,
233
- VVMATRIX = 449,
234
- SVG = 450,
235
- ENDSVG = 451,
236
- SMALLMATRIX = 452,
237
- CASES = 453,
238
- ALIGNED = 454,
239
- ALIGNAT = 455,
240
- ALIGNEDAT = 456,
241
- GATHERED = 457,
242
- SUBSTACK = 458,
243
- BMOD = 459,
244
- PMOD = 460,
245
- POD = 461,
246
- RMCHAR = 462,
247
- SCRCHAR = 463,
248
- PMBCHAR = 464,
249
- COLOR = 465,
250
- BGCOLOR = 466,
251
- XARROW = 467,
252
- OPTARGOPEN = 468,
253
- OPTARGCLOSE = 469,
254
- MTEXNUM = 470,
255
- RAISEBOX = 471,
256
- NEG = 472,
257
- LATEXSYMBOL = 473,
258
- TEXSYMBOL = 474,
259
- VARINJLIM = 475,
260
- VARLIMINF = 476,
261
- VARLIMSUP = 477,
262
- VARPROJLIM = 478
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
+ LEFT = 279,
64
+ RIGHT = 280,
65
+ BIG = 281,
66
+ BBIG = 282,
67
+ BIGG = 283,
68
+ BBIGG = 284,
69
+ BIGL = 285,
70
+ BBIGL = 286,
71
+ BIGGL = 287,
72
+ BBIGGL = 288,
73
+ BIGM = 289,
74
+ BBIGM = 290,
75
+ BIGGM = 291,
76
+ BBIGGM = 292,
77
+ FRAC = 293,
78
+ TFRAC = 294,
79
+ DFRAC = 295,
80
+ OPERATORNAME = 296,
81
+ MATHOP = 297,
82
+ MATHBIN = 298,
83
+ MATHREL = 299,
84
+ MATHINNER = 300,
85
+ MOP = 301,
86
+ MOL = 302,
87
+ MOLL = 303,
88
+ MOF = 304,
89
+ MOR = 305,
90
+ PERIODDELIM = 306,
91
+ OTHERDELIM = 307,
92
+ LEFTDELIM = 308,
93
+ RIGHTDELIM = 309,
94
+ MOS = 310,
95
+ MOB = 311,
96
+ SQRT = 312,
97
+ ROOT = 313,
98
+ BINOM = 314,
99
+ TBINOM = 315,
100
+ BRACE = 316,
101
+ BRACK = 317,
102
+ CHOOSE = 318,
103
+ DBINOM = 319,
104
+ UNDER = 320,
105
+ OVER = 321,
106
+ OVERBRACE = 322,
107
+ OVERBRACKET = 323,
108
+ UNDERLINE = 324,
109
+ UNDERBRACE = 325,
110
+ UNDERBRACKET = 326,
111
+ UNDEROVER = 327,
112
+ TENSOR = 328,
113
+ MULTI = 329,
114
+ ALIGNATVALUE = 330,
115
+ ARRAYALIGN = 331,
116
+ COLUMNALIGN = 332,
117
+ ARRAY = 333,
118
+ SPACECUBE = 334,
119
+ HSPACE = 335,
120
+ MOVELEFT = 336,
121
+ MOVERIGHT = 337,
122
+ RAISE = 338,
123
+ RAISESTRING = 339,
124
+ LOWER = 340,
125
+ LOWERSTRING = 341,
126
+ PXSTRING = 342,
127
+ COLSEP = 343,
128
+ ROWSEP = 344,
129
+ ARRAYOPTS = 345,
130
+ COLLAYOUT = 346,
131
+ COLALIGN = 347,
132
+ ROWALIGN = 348,
133
+ ALIGN = 349,
134
+ EQROWS = 350,
135
+ EQCOLS = 351,
136
+ ROWLINES = 352,
137
+ COLLINES = 353,
138
+ FRAME = 354,
139
+ PADDING = 355,
140
+ ATTRLIST = 356,
141
+ ITALICS = 357,
142
+ SANS = 358,
143
+ TT = 359,
144
+ ENCLOSE = 360,
145
+ ENCLOSENOTATION = 361,
146
+ ENCLOSEATTR = 362,
147
+ ENCLOSETEXT = 363,
148
+ BOLD = 364,
149
+ BOXED = 365,
150
+ FBOX = 366,
151
+ HBOX = 367,
152
+ MBOX = 368,
153
+ BCANCELED = 369,
154
+ XCANCELED = 370,
155
+ CANCELEDTO = 371,
156
+ NOT = 372,
157
+ SLASHED = 373,
158
+ PMB = 374,
159
+ SCR = 375,
160
+ RM = 376,
161
+ BB = 377,
162
+ ST = 378,
163
+ END = 379,
164
+ BBLOWERCHAR = 380,
165
+ BBUPPERCHAR = 381,
166
+ BBDIGIT = 382,
167
+ CALCHAR = 383,
168
+ FRAKCHAR = 384,
169
+ CAL = 385,
170
+ FRAK = 386,
171
+ CLAP = 387,
172
+ LLAP = 388,
173
+ RLAP = 389,
174
+ ROWOPTS = 390,
175
+ TEXTSIZE = 391,
176
+ OLDSTYLE = 392,
177
+ SCSIZE = 393,
178
+ SCSCSIZE = 394,
179
+ TINY = 395,
180
+ TTINY = 396,
181
+ SMALL = 397,
182
+ NORMALSIZE = 398,
183
+ LARGE = 399,
184
+ LLARGE = 400,
185
+ LLLARGE = 401,
186
+ HUGE = 402,
187
+ HHUGE = 403,
188
+ DISPLAY = 404,
189
+ TEXTSTY = 405,
190
+ SCRIPTSCRIPTSTYLE = 406,
191
+ TEXTBOX = 407,
192
+ TEXTSTRING = 408,
193
+ VERBBOX = 409,
194
+ VERBSTRING = 410,
195
+ ACUTE = 411,
196
+ GRAVE = 412,
197
+ BREVE = 413,
198
+ MATHRING = 414,
199
+ XMLSTRING = 415,
200
+ CELLOPTS = 416,
201
+ ROWSPAN = 417,
202
+ COLSPAN = 418,
203
+ THINSPACE = 419,
204
+ ENSPACE = 420,
205
+ MEDSPACE = 421,
206
+ THICKSPACE = 422,
207
+ QUAD = 423,
208
+ QQUAD = 424,
209
+ NEGSPACE = 425,
210
+ NEGMEDSPACE = 426,
211
+ NEGTHICKSPACE = 427,
212
+ STRUT = 428,
213
+ MATHSTRUT = 429,
214
+ SMASH = 430,
215
+ PHANTOM = 431,
216
+ HPHANTOM = 432,
217
+ VPHANTOM = 433,
218
+ HREF = 434,
219
+ UNKNOWNCHAR = 435,
220
+ EMPTYMROW = 436,
221
+ STATLINE = 437,
222
+ TOOLTIP = 438,
223
+ TOGGLE = 439,
224
+ TOGGLESTART = 440,
225
+ TOGGLEEND = 441,
226
+ FGHIGHLIGHT = 442,
227
+ BGHIGHLIGHT = 443,
228
+ COLORBOX = 444,
229
+ SPACE = 445,
230
+ PIXSIZE = 446,
231
+ INTONE = 447,
232
+ INTTWO = 448,
233
+ INTTHREE = 449,
234
+ OVERLEFTARROW = 450,
235
+ OVERLEFTRIGHTARROW = 451,
236
+ OVERRIGHTARROW = 452,
237
+ UNDERLEFTARROW = 453,
238
+ UNDERLEFTRIGHTARROW = 454,
239
+ UNDERRIGHTARROW = 455,
240
+ BAR = 456,
241
+ WIDEBAR = 457,
242
+ VEC = 458,
243
+ WIDEVEC = 459,
244
+ HAT = 460,
245
+ WIDEHAT = 461,
246
+ CHECK = 462,
247
+ WIDECHECK = 463,
248
+ TILDE = 464,
249
+ WIDETILDE = 465,
250
+ DOT = 466,
251
+ DDOT = 467,
252
+ DDDOT = 468,
253
+ DDDDOT = 469,
254
+ UNARYMINUS = 470,
255
+ UNARYPLUS = 471,
256
+ BEGINENV = 472,
257
+ ENDENV = 473,
258
+ EQUATION = 474,
259
+ EQUATION_STAR = 475,
260
+ EQALIGN = 476,
261
+ EQALIGNNO = 477,
262
+ MATRIX = 478,
263
+ PMATRIX = 479,
264
+ BMATRIX = 480,
265
+ BBMATRIX = 481,
266
+ VMATRIX = 482,
267
+ VVMATRIX = 483,
268
+ SVG = 484,
269
+ ENDSVG = 485,
270
+ SMALLMATRIX = 486,
271
+ CASES = 487,
272
+ ALIGNED = 488,
273
+ ALIGNENV = 489,
274
+ ALIGNENV_STAR = 490,
275
+ ALIGNAT = 491,
276
+ ALIGNAT_STAR = 492,
277
+ ALIGNEDAT = 493,
278
+ GATHERED = 494,
279
+ GATHER_STAR = 495,
280
+ GATHER = 496,
281
+ SUBSTACK = 497,
282
+ BMOD = 498,
283
+ PMOD = 499,
284
+ POD = 500,
285
+ RMCHAR = 501,
286
+ SCRCHAR = 502,
287
+ PMBCHAR = 503,
288
+ COLOR = 504,
289
+ BGCOLOR = 505,
290
+ XARROW = 506,
291
+ OPTARGOPEN = 507,
292
+ OPTARGCLOSE = 508,
293
+ MTEXNUM = 509,
294
+ RAISEBOX = 510,
295
+ NEG = 511,
296
+ LATEXSYMBOL = 512,
297
+ TEXSYMBOL = 513,
298
+ VARINJLIM = 514,
299
+ VARLIMINF = 515,
300
+ VARLIMSUP = 516,
301
+ VARPROJLIM = 517
263
302
  };
264
303
  #endif
265
304
  /* Tokens. */
@@ -273,217 +312,256 @@
273
312
  #define STARTMATH 265
274
313
  #define STARTDMATH 266
275
314
  #define ENDMATH 267
276
- #define MI 268
277
- #define MIB 269
278
- #define MN 270
279
- #define MO 271
280
- #define LIMITS 272
281
- #define NOLIMITS 273
282
- #define SUP 274
283
- #define SUB 275
284
- #define MROWOPEN 276
285
- #define MROWCLOSE 277
286
- #define LEFT 278
287
- #define RIGHT 279
288
- #define BIG 280
289
- #define BBIG 281
290
- #define BIGG 282
291
- #define BBIGG 283
292
- #define BIGL 284
293
- #define BBIGL 285
294
- #define BIGGL 286
295
- #define BBIGGL 287
296
- #define BIGM 288
297
- #define BBIGM 289
298
- #define BIGGM 290
299
- #define BBIGGM 291
300
- #define FRAC 292
301
- #define TFRAC 293
302
- #define DFRAC 294
303
- #define OPERATORNAME 295
304
- #define MATHOP 296
305
- #define MATHBIN 297
306
- #define MATHREL 298
307
- #define MOP 299
308
- #define MOL 300
309
- #define MOLL 301
310
- #define MOF 302
311
- #define MOR 303
312
- #define PERIODDELIM 304
313
- #define OTHERDELIM 305
314
- #define LEFTDELIM 306
315
- #define RIGHTDELIM 307
316
- #define MOS 308
317
- #define MOB 309
318
- #define SQRT 310
319
- #define ROOT 311
320
- #define BINOM 312
321
- #define TBINOM 313
322
- #define BRACE 314
323
- #define BRACK 315
324
- #define CHOOSE 316
325
- #define DBINOM 317
326
- #define UNDER 318
327
- #define OVER 319
328
- #define OVERBRACE 320
329
- #define OVERBRACKET 321
330
- #define UNDERLINE 322
331
- #define UNDERBRACE 323
332
- #define UNDERBRACKET 324
333
- #define UNDEROVER 325
334
- #define TENSOR 326
335
- #define MULTI 327
336
- #define ALIGNATVALUE 328
337
- #define ARRAYALIGN 329
338
- #define COLUMNALIGN 330
339
- #define ARRAY 331
340
- #define PXSTRING 332
341
- #define COLSEP 333
342
- #define ROWSEP 334
343
- #define ARRAYOPTS 335
344
- #define COLLAYOUT 336
345
- #define COLALIGN 337
346
- #define ROWALIGN 338
347
- #define ALIGN 339
348
- #define EQROWS 340
349
- #define EQCOLS 341
350
- #define ROWLINES 342
351
- #define COLLINES 343
352
- #define FRAME 344
353
- #define PADDING 345
354
- #define ATTRLIST 346
355
- #define ITALICS 347
356
- #define SANS 348
357
- #define TT 349
358
- #define BOLD 350
359
- #define BOXED 351
360
- #define BOXSTRING 352
361
- #define FBOX 353
362
- #define HBOX 354
363
- #define MBOX 355
364
- #define BCANCELED 356
365
- #define XCANCELED 357
366
- #define CANCELEDTO 358
367
- #define NOT 359
368
- #define SLASHED 360
369
- #define PMB 361
370
- #define SCR 362
371
- #define RM 363
372
- #define BB 364
373
- #define ST 365
374
- #define END 366
375
- #define BBLOWERCHAR 367
376
- #define BBUPPERCHAR 368
377
- #define BBDIGIT 369
378
- #define CALCHAR 370
379
- #define FRAKCHAR 371
380
- #define CAL 372
381
- #define FRAK 373
382
- #define CLAP 374
383
- #define LLAP 375
384
- #define RLAP 376
385
- #define ROWOPTS 377
386
- #define TEXTSIZE 378
387
- #define SCSIZE 379
388
- #define SCSCSIZE 380
389
- #define DISPLAY 381
390
- #define TEXTSTY 382
391
- #define TEXTBOX 383
392
- #define TEXTSTRING 384
393
- #define VERBBOX 385
394
- #define VERBSTRING 386
395
- #define ACUTE 387
396
- #define GRAVE 388
397
- #define BREVE 389
398
- #define MATHRING 390
399
- #define XMLSTRING 391
400
- #define CELLOPTS 392
401
- #define ROWSPAN 393
402
- #define COLSPAN 394
403
- #define THINSPACE 395
404
- #define MEDSPACE 396
405
- #define THICKSPACE 397
406
- #define QUAD 398
407
- #define QQUAD 399
408
- #define NEGSPACE 400
409
- #define NEGMEDSPACE 401
410
- #define NEGTHICKSPACE 402
411
- #define PHANTOM 403
412
- #define HREF 404
413
- #define UNKNOWNCHAR 405
414
- #define EMPTYMROW 406
415
- #define STATLINE 407
416
- #define TOOLTIP 408
417
- #define TOGGLE 409
418
- #define TOGGLESTART 410
419
- #define TOGGLEEND 411
420
- #define FGHIGHLIGHT 412
421
- #define BGHIGHLIGHT 413
422
- #define COLORBOX 414
423
- #define SPACE 415
424
- #define PIXSIZE 416
425
- #define INTONE 417
426
- #define INTTWO 418
427
- #define INTTHREE 419
428
- #define OVERLEFTARROW 420
429
- #define OVERLEFTRIGHTARROW 421
430
- #define OVERRIGHTARROW 422
431
- #define UNDERLEFTARROW 423
432
- #define UNDERLEFTRIGHTARROW 424
433
- #define UNDERRIGHTARROW 425
434
- #define BAR 426
435
- #define WIDEBAR 427
436
- #define VEC 428
437
- #define WIDEVEC 429
438
- #define HAT 430
439
- #define WIDEHAT 431
440
- #define CHECK 432
441
- #define WIDECHECK 433
442
- #define TILDE 434
443
- #define WIDETILDE 435
444
- #define DOT 436
445
- #define DDOT 437
446
- #define DDDOT 438
447
- #define DDDDOT 439
448
- #define UNARYMINUS 440
449
- #define UNARYPLUS 441
450
- #define BEGINENV 442
451
- #define ENDENV 443
452
- #define MATRIX 444
453
- #define PMATRIX 445
454
- #define BMATRIX 446
455
- #define BBMATRIX 447
456
- #define VMATRIX 448
457
- #define VVMATRIX 449
458
- #define SVG 450
459
- #define ENDSVG 451
460
- #define SMALLMATRIX 452
461
- #define CASES 453
462
- #define ALIGNED 454
463
- #define ALIGNAT 455
464
- #define ALIGNEDAT 456
465
- #define GATHERED 457
466
- #define SUBSTACK 458
467
- #define BMOD 459
468
- #define PMOD 460
469
- #define POD 461
470
- #define RMCHAR 462
471
- #define SCRCHAR 463
472
- #define PMBCHAR 464
473
- #define COLOR 465
474
- #define BGCOLOR 466
475
- #define XARROW 467
476
- #define OPTARGOPEN 468
477
- #define OPTARGCLOSE 469
478
- #define MTEXNUM 470
479
- #define RAISEBOX 471
480
- #define NEG 472
481
- #define LATEXSYMBOL 473
482
- #define TEXSYMBOL 474
483
- #define VARINJLIM 475
484
- #define VARLIMINF 476
485
- #define VARLIMSUP 477
486
- #define VARPROJLIM 478
315
+ #define MTEXT 268
316
+ #define MI 269
317
+ #define MIB 270
318
+ #define MN 271
319
+ #define MO 272
320
+ #define LIMITS 273
321
+ #define NOLIMITS 274
322
+ #define SUP 275
323
+ #define SUB 276
324
+ #define MROWOPEN 277
325
+ #define MROWCLOSE 278
326
+ #define LEFT 279
327
+ #define RIGHT 280
328
+ #define BIG 281
329
+ #define BBIG 282
330
+ #define BIGG 283
331
+ #define BBIGG 284
332
+ #define BIGL 285
333
+ #define BBIGL 286
334
+ #define BIGGL 287
335
+ #define BBIGGL 288
336
+ #define BIGM 289
337
+ #define BBIGM 290
338
+ #define BIGGM 291
339
+ #define BBIGGM 292
340
+ #define FRAC 293
341
+ #define TFRAC 294
342
+ #define DFRAC 295
343
+ #define OPERATORNAME 296
344
+ #define MATHOP 297
345
+ #define MATHBIN 298
346
+ #define MATHREL 299
347
+ #define MATHINNER 300
348
+ #define MOP 301
349
+ #define MOL 302
350
+ #define MOLL 303
351
+ #define MOF 304
352
+ #define MOR 305
353
+ #define PERIODDELIM 306
354
+ #define OTHERDELIM 307
355
+ #define LEFTDELIM 308
356
+ #define RIGHTDELIM 309
357
+ #define MOS 310
358
+ #define MOB 311
359
+ #define SQRT 312
360
+ #define ROOT 313
361
+ #define BINOM 314
362
+ #define TBINOM 315
363
+ #define BRACE 316
364
+ #define BRACK 317
365
+ #define CHOOSE 318
366
+ #define DBINOM 319
367
+ #define UNDER 320
368
+ #define OVER 321
369
+ #define OVERBRACE 322
370
+ #define OVERBRACKET 323
371
+ #define UNDERLINE 324
372
+ #define UNDERBRACE 325
373
+ #define UNDERBRACKET 326
374
+ #define UNDEROVER 327
375
+ #define TENSOR 328
376
+ #define MULTI 329
377
+ #define ALIGNATVALUE 330
378
+ #define ARRAYALIGN 331
379
+ #define COLUMNALIGN 332
380
+ #define ARRAY 333
381
+ #define SPACECUBE 334
382
+ #define HSPACE 335
383
+ #define MOVELEFT 336
384
+ #define MOVERIGHT 337
385
+ #define RAISE 338
386
+ #define RAISESTRING 339
387
+ #define LOWER 340
388
+ #define LOWERSTRING 341
389
+ #define PXSTRING 342
390
+ #define COLSEP 343
391
+ #define ROWSEP 344
392
+ #define ARRAYOPTS 345
393
+ #define COLLAYOUT 346
394
+ #define COLALIGN 347
395
+ #define ROWALIGN 348
396
+ #define ALIGN 349
397
+ #define EQROWS 350
398
+ #define EQCOLS 351
399
+ #define ROWLINES 352
400
+ #define COLLINES 353
401
+ #define FRAME 354
402
+ #define PADDING 355
403
+ #define ATTRLIST 356
404
+ #define ITALICS 357
405
+ #define SANS 358
406
+ #define TT 359
407
+ #define ENCLOSE 360
408
+ #define ENCLOSENOTATION 361
409
+ #define ENCLOSEATTR 362
410
+ #define ENCLOSETEXT 363
411
+ #define BOLD 364
412
+ #define BOXED 365
413
+ #define FBOX 366
414
+ #define HBOX 367
415
+ #define MBOX 368
416
+ #define BCANCELED 369
417
+ #define XCANCELED 370
418
+ #define CANCELEDTO 371
419
+ #define NOT 372
420
+ #define SLASHED 373
421
+ #define PMB 374
422
+ #define SCR 375
423
+ #define RM 376
424
+ #define BB 377
425
+ #define ST 378
426
+ #define END 379
427
+ #define BBLOWERCHAR 380
428
+ #define BBUPPERCHAR 381
429
+ #define BBDIGIT 382
430
+ #define CALCHAR 383
431
+ #define FRAKCHAR 384
432
+ #define CAL 385
433
+ #define FRAK 386
434
+ #define CLAP 387
435
+ #define LLAP 388
436
+ #define RLAP 389
437
+ #define ROWOPTS 390
438
+ #define TEXTSIZE 391
439
+ #define OLDSTYLE 392
440
+ #define SCSIZE 393
441
+ #define SCSCSIZE 394
442
+ #define TINY 395
443
+ #define TTINY 396
444
+ #define SMALL 397
445
+ #define NORMALSIZE 398
446
+ #define LARGE 399
447
+ #define LLARGE 400
448
+ #define LLLARGE 401
449
+ #define HUGE 402
450
+ #define HHUGE 403
451
+ #define DISPLAY 404
452
+ #define TEXTSTY 405
453
+ #define SCRIPTSCRIPTSTYLE 406
454
+ #define TEXTBOX 407
455
+ #define TEXTSTRING 408
456
+ #define VERBBOX 409
457
+ #define VERBSTRING 410
458
+ #define ACUTE 411
459
+ #define GRAVE 412
460
+ #define BREVE 413
461
+ #define MATHRING 414
462
+ #define XMLSTRING 415
463
+ #define CELLOPTS 416
464
+ #define ROWSPAN 417
465
+ #define COLSPAN 418
466
+ #define THINSPACE 419
467
+ #define ENSPACE 420
468
+ #define MEDSPACE 421
469
+ #define THICKSPACE 422
470
+ #define QUAD 423
471
+ #define QQUAD 424
472
+ #define NEGSPACE 425
473
+ #define NEGMEDSPACE 426
474
+ #define NEGTHICKSPACE 427
475
+ #define STRUT 428
476
+ #define MATHSTRUT 429
477
+ #define SMASH 430
478
+ #define PHANTOM 431
479
+ #define HPHANTOM 432
480
+ #define VPHANTOM 433
481
+ #define HREF 434
482
+ #define UNKNOWNCHAR 435
483
+ #define EMPTYMROW 436
484
+ #define STATLINE 437
485
+ #define TOOLTIP 438
486
+ #define TOGGLE 439
487
+ #define TOGGLESTART 440
488
+ #define TOGGLEEND 441
489
+ #define FGHIGHLIGHT 442
490
+ #define BGHIGHLIGHT 443
491
+ #define COLORBOX 444
492
+ #define SPACE 445
493
+ #define PIXSIZE 446
494
+ #define INTONE 447
495
+ #define INTTWO 448
496
+ #define INTTHREE 449
497
+ #define OVERLEFTARROW 450
498
+ #define OVERLEFTRIGHTARROW 451
499
+ #define OVERRIGHTARROW 452
500
+ #define UNDERLEFTARROW 453
501
+ #define UNDERLEFTRIGHTARROW 454
502
+ #define UNDERRIGHTARROW 455
503
+ #define BAR 456
504
+ #define WIDEBAR 457
505
+ #define VEC 458
506
+ #define WIDEVEC 459
507
+ #define HAT 460
508
+ #define WIDEHAT 461
509
+ #define CHECK 462
510
+ #define WIDECHECK 463
511
+ #define TILDE 464
512
+ #define WIDETILDE 465
513
+ #define DOT 466
514
+ #define DDOT 467
515
+ #define DDDOT 468
516
+ #define DDDDOT 469
517
+ #define UNARYMINUS 470
518
+ #define UNARYPLUS 471
519
+ #define BEGINENV 472
520
+ #define ENDENV 473
521
+ #define EQUATION 474
522
+ #define EQUATION_STAR 475
523
+ #define EQALIGN 476
524
+ #define EQALIGNNO 477
525
+ #define MATRIX 478
526
+ #define PMATRIX 479
527
+ #define BMATRIX 480
528
+ #define BBMATRIX 481
529
+ #define VMATRIX 482
530
+ #define VVMATRIX 483
531
+ #define SVG 484
532
+ #define ENDSVG 485
533
+ #define SMALLMATRIX 486
534
+ #define CASES 487
535
+ #define ALIGNED 488
536
+ #define ALIGNENV 489
537
+ #define ALIGNENV_STAR 490
538
+ #define ALIGNAT 491
539
+ #define ALIGNAT_STAR 492
540
+ #define ALIGNEDAT 493
541
+ #define GATHERED 494
542
+ #define GATHER_STAR 495
543
+ #define GATHER 496
544
+ #define SUBSTACK 497
545
+ #define BMOD 498
546
+ #define PMOD 499
547
+ #define POD 500
548
+ #define RMCHAR 501
549
+ #define SCRCHAR 502
550
+ #define PMBCHAR 503
551
+ #define COLOR 504
552
+ #define BGCOLOR 505
553
+ #define XARROW 506
554
+ #define OPTARGOPEN 507
555
+ #define OPTARGCLOSE 508
556
+ #define MTEXNUM 509
557
+ #define RAISEBOX 510
558
+ #define NEG 511
559
+ #define LATEXSYMBOL 512
560
+ #define TEXSYMBOL 513
561
+ #define VARINJLIM 514
562
+ #define VARLIMINF 515
563
+ #define VARLIMSUP 516
564
+ #define VARPROJLIM 517
487
565
 
488
566
 
489
567