@likecoin/epubcheck-ts 0.1.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.
- package/LICENSE +674 -0
- package/README.md +339 -0
- package/dist/index.cjs +1904 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +523 -0
- package/dist/index.d.ts +523 -0
- package/dist/index.js +1895 -0
- package/dist/index.js.map +1 -0
- package/package.json +69 -0
- package/schemas/applications.rng +429 -0
- package/schemas/aria.rng +3355 -0
- package/schemas/block.rng +488 -0
- package/schemas/common.rng +1076 -0
- package/schemas/container.rng +24 -0
- package/schemas/core-scripting.rng +950 -0
- package/schemas/data.rng +161 -0
- package/schemas/datatypes.rng +401 -0
- package/schemas/embed.rng +980 -0
- package/schemas/epub-mathml3-inc.rng +161 -0
- package/schemas/epub-nav-30.rnc +44 -0
- package/schemas/epub-nav-30.rng +19985 -0
- package/schemas/epub-nav-30.sch +87 -0
- package/schemas/epub-prefix-attr.rng +17 -0
- package/schemas/epub-shared-inc.rng +29 -0
- package/schemas/epub-ssml-attrs.rng +17 -0
- package/schemas/epub-svg-30.rnc +17 -0
- package/schemas/epub-svg-30.rng +19903 -0
- package/schemas/epub-svg-30.sch +7 -0
- package/schemas/epub-svg-forgiving-inc.rng +315 -0
- package/schemas/epub-switch.rng +121 -0
- package/schemas/epub-trigger.rng +90 -0
- package/schemas/epub-type-attr.rng +12 -0
- package/schemas/epub-xhtml-30.rnc +6 -0
- package/schemas/epub-xhtml-30.rng +19882 -0
- package/schemas/epub-xhtml-30.sch +409 -0
- package/schemas/epub-xhtml-inc.rng +151 -0
- package/schemas/epub-xhtml-integration.rng +565 -0
- package/schemas/epub-xhtml-svg-mathml.rng +17 -0
- package/schemas/form-datatypes.rng +54 -0
- package/schemas/mathml3-common.rng +336 -0
- package/schemas/mathml3-content.rng +1552 -0
- package/schemas/mathml3-inc.rng +30 -0
- package/schemas/mathml3-presentation.rng +2341 -0
- package/schemas/mathml3-strict-content.rng +205 -0
- package/schemas/media.rng +374 -0
- package/schemas/meta.rng +754 -0
- package/schemas/microdata.rng +192 -0
- package/schemas/ncx.rng +308 -0
- package/schemas/ocf-container-30.rnc +37 -0
- package/schemas/ocf-container-30.rng +568 -0
- package/schemas/opf.rng +15 -0
- package/schemas/opf20.rng +513 -0
- package/schemas/package-30.rnc +133 -0
- package/schemas/package-30.rng +1153 -0
- package/schemas/package-30.sch +444 -0
- package/schemas/phrase.rng +746 -0
- package/schemas/rdfa.rng +552 -0
- package/schemas/revision.rng +106 -0
- package/schemas/ruby.rng +141 -0
- package/schemas/sectional.rng +278 -0
- package/schemas/structural.rng +298 -0
- package/schemas/tables.rng +420 -0
- package/schemas/web-components.rng +184 -0
- package/schemas/web-forms.rng +975 -0
- package/schemas/web-forms2.rng +1236 -0
|
@@ -0,0 +1,2341 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
This is the Mathematical Markup Language (MathML) 3.0, an XML
|
|
4
|
+
application for describing mathematical notation and capturing
|
|
5
|
+
both its structure and content.
|
|
6
|
+
|
|
7
|
+
With additional changes for integration into the validator.nu
|
|
8
|
+
service.
|
|
9
|
+
|
|
10
|
+
Copyright 1998-2010 W3C (MIT, ERCIM, Keio)
|
|
11
|
+
Copyright 2012 Mozilla Foundation
|
|
12
|
+
Copyright 2014-2019 W3C (MIT, ERCIM, Keio, Beihang)
|
|
13
|
+
|
|
14
|
+
Use and distribution of this code are permitted under the terms
|
|
15
|
+
W3C Software Notice and License
|
|
16
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
|
|
17
|
+
-->
|
|
18
|
+
<grammar ns="http://www.w3.org/1998/Math/MathML" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
19
|
+
<define name="MathExpression" combine="choice">
|
|
20
|
+
<ref name="PresentationExpression"/>
|
|
21
|
+
</define>
|
|
22
|
+
<define name="ImpliedMrow">
|
|
23
|
+
<zeroOrMore>
|
|
24
|
+
<ref name="MathExpression"/>
|
|
25
|
+
</zeroOrMore>
|
|
26
|
+
</define>
|
|
27
|
+
<define name="TableRowExpression">
|
|
28
|
+
<choice>
|
|
29
|
+
<ref name="mtr"/>
|
|
30
|
+
<ref name="mlabeledtr"/>
|
|
31
|
+
</choice>
|
|
32
|
+
</define>
|
|
33
|
+
<define name="TableCellExpression">
|
|
34
|
+
<ref name="mtd"/>
|
|
35
|
+
</define>
|
|
36
|
+
<define name="MstackExpression">
|
|
37
|
+
<choice>
|
|
38
|
+
<ref name="MathExpression"/>
|
|
39
|
+
<ref name="mscarries"/>
|
|
40
|
+
<ref name="msline"/>
|
|
41
|
+
<ref name="msrow"/>
|
|
42
|
+
<ref name="msgroup"/>
|
|
43
|
+
</choice>
|
|
44
|
+
</define>
|
|
45
|
+
<define name="MsrowExpression">
|
|
46
|
+
<choice>
|
|
47
|
+
<ref name="MathExpression"/>
|
|
48
|
+
<ref name="none"/>
|
|
49
|
+
</choice>
|
|
50
|
+
</define>
|
|
51
|
+
<define name="MultiScriptExpression">
|
|
52
|
+
<choice>
|
|
53
|
+
<ref name="MathExpression"/>
|
|
54
|
+
<ref name="none"/>
|
|
55
|
+
</choice>
|
|
56
|
+
<choice>
|
|
57
|
+
<ref name="MathExpression"/>
|
|
58
|
+
<ref name="none"/>
|
|
59
|
+
</choice>
|
|
60
|
+
</define>
|
|
61
|
+
<define name="mpadded-length">
|
|
62
|
+
<data type="string">
|
|
63
|
+
<param name="pattern">\s*([\+\-]?[0-9]*([0-9]\.?|\.[0-9])[0-9]*\s*((%?\s*(height|depth|width)?)|e[mx]|in|cm|mm|p[xtc]|((negative)?((very){0,2}thi(n|ck)|medium)mathspace))?)\s*</param>
|
|
64
|
+
</data>
|
|
65
|
+
</define>
|
|
66
|
+
<define name="linestyle">
|
|
67
|
+
<choice>
|
|
68
|
+
<value>none</value>
|
|
69
|
+
<value>solid</value>
|
|
70
|
+
<value>dashed</value>
|
|
71
|
+
</choice>
|
|
72
|
+
</define>
|
|
73
|
+
<define name="verticalalign">
|
|
74
|
+
<choice>
|
|
75
|
+
<value>top</value>
|
|
76
|
+
<value>bottom</value>
|
|
77
|
+
<value>center</value>
|
|
78
|
+
<value>baseline</value>
|
|
79
|
+
<value>axis</value>
|
|
80
|
+
</choice>
|
|
81
|
+
</define>
|
|
82
|
+
<define name="columnalignstyle">
|
|
83
|
+
<choice>
|
|
84
|
+
<value>left</value>
|
|
85
|
+
<value>center</value>
|
|
86
|
+
<value>right</value>
|
|
87
|
+
</choice>
|
|
88
|
+
</define>
|
|
89
|
+
<define name="notationstyle">
|
|
90
|
+
<choice>
|
|
91
|
+
<value>longdiv</value>
|
|
92
|
+
<value>actuarial</value>
|
|
93
|
+
<value>radical</value>
|
|
94
|
+
<value>box</value>
|
|
95
|
+
<value>roundedbox</value>
|
|
96
|
+
<value>circle</value>
|
|
97
|
+
<value>left</value>
|
|
98
|
+
<value>right</value>
|
|
99
|
+
<value>top</value>
|
|
100
|
+
<value>bottom</value>
|
|
101
|
+
<value>updiagonalstrike</value>
|
|
102
|
+
<value>downdiagonalstrike</value>
|
|
103
|
+
<value>verticalstrike</value>
|
|
104
|
+
<value>horizontalstrike</value>
|
|
105
|
+
<value>madruwb</value>
|
|
106
|
+
</choice>
|
|
107
|
+
</define>
|
|
108
|
+
<define name="idref">
|
|
109
|
+
<text/>
|
|
110
|
+
</define>
|
|
111
|
+
<define name="unsigned-integer">
|
|
112
|
+
<data type="unsignedLong"/>
|
|
113
|
+
</define>
|
|
114
|
+
<define name="integer">
|
|
115
|
+
<data type="integer"/>
|
|
116
|
+
</define>
|
|
117
|
+
<define name="number">
|
|
118
|
+
<data type="decimal"/>
|
|
119
|
+
</define>
|
|
120
|
+
<define name="character">
|
|
121
|
+
<data type="string">
|
|
122
|
+
<param name="pattern">\s*\S\s*</param>
|
|
123
|
+
</data>
|
|
124
|
+
</define>
|
|
125
|
+
<define name="color">
|
|
126
|
+
<data type="string">
|
|
127
|
+
<param name="pattern">\s*((#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?)|[aA][qQ][uU][aA]|[bB][lL][aA][cC][kK]|[bB][lL][uU][eE]|[fF][uU][cC][hH][sS][iI][aA]|[gG][rR][aA][yY]|[gG][rR][eE][eE][nN]|[lL][iI][mM][eE]|[mM][aA][rR][oO][oO][nN]|[nN][aA][vV][yY]|[oO][lL][iI][vV][eE]|[pP][uU][rR][pP][lL][eE]|[rR][eE][dD]|[sS][iI][lL][vV][eE][rR]|[tT][eE][aA][lL]|[wW][hH][iI][tT][eE]|[yY][eE][lL][lL][oO][wW])\s*</param>
|
|
128
|
+
</data>
|
|
129
|
+
</define>
|
|
130
|
+
<define name="group-alignment">
|
|
131
|
+
<choice>
|
|
132
|
+
<value>left</value>
|
|
133
|
+
<value>center</value>
|
|
134
|
+
<value>right</value>
|
|
135
|
+
<value>decimalpoint</value>
|
|
136
|
+
</choice>
|
|
137
|
+
</define>
|
|
138
|
+
<define name="group-alignment-list">
|
|
139
|
+
<list>
|
|
140
|
+
<oneOrMore>
|
|
141
|
+
<ref name="group-alignment"/>
|
|
142
|
+
</oneOrMore>
|
|
143
|
+
</list>
|
|
144
|
+
</define>
|
|
145
|
+
<define name="group-alignment-list-list">
|
|
146
|
+
<data type="string">
|
|
147
|
+
<param name="pattern">(\s*\{\s*(left|center|right|decimalpoint)(\s+(left|center|right|decimalpoint))*\})*\s*</param>
|
|
148
|
+
</data>
|
|
149
|
+
</define>
|
|
150
|
+
<define name="positive-integer">
|
|
151
|
+
<data type="positiveInteger"/>
|
|
152
|
+
</define>
|
|
153
|
+
<define name="TokenExpression">
|
|
154
|
+
<choice>
|
|
155
|
+
<ref name="mi"/>
|
|
156
|
+
<ref name="mn"/>
|
|
157
|
+
<ref name="mo"/>
|
|
158
|
+
<ref name="mtext"/>
|
|
159
|
+
<ref name="mspace"/>
|
|
160
|
+
<ref name="ms"/>
|
|
161
|
+
</choice>
|
|
162
|
+
</define>
|
|
163
|
+
<define name="token.content">
|
|
164
|
+
<choice>
|
|
165
|
+
<ref name="mglyph"/>
|
|
166
|
+
<ref name="malignmark"/>
|
|
167
|
+
<text/>
|
|
168
|
+
</choice>
|
|
169
|
+
</define>
|
|
170
|
+
<define name="mi">
|
|
171
|
+
<element name="mi">
|
|
172
|
+
<ref name="mi.attributes"/>
|
|
173
|
+
<zeroOrMore>
|
|
174
|
+
<ref name="token.content"/>
|
|
175
|
+
</zeroOrMore>
|
|
176
|
+
</element>
|
|
177
|
+
</define>
|
|
178
|
+
<define name="mi.attributes">
|
|
179
|
+
<ref name="CommonAtt"/>
|
|
180
|
+
<ref name="CommonPresAtt"/>
|
|
181
|
+
<ref name="TokenAtt"/>
|
|
182
|
+
</define>
|
|
183
|
+
<define name="mn">
|
|
184
|
+
<element name="mn">
|
|
185
|
+
<ref name="mn.attributes"/>
|
|
186
|
+
<zeroOrMore>
|
|
187
|
+
<ref name="token.content"/>
|
|
188
|
+
</zeroOrMore>
|
|
189
|
+
</element>
|
|
190
|
+
</define>
|
|
191
|
+
<define name="mn.attributes">
|
|
192
|
+
<ref name="CommonAtt"/>
|
|
193
|
+
<ref name="CommonPresAtt"/>
|
|
194
|
+
<ref name="TokenAtt"/>
|
|
195
|
+
</define>
|
|
196
|
+
<define name="mo">
|
|
197
|
+
<element name="mo">
|
|
198
|
+
<ref name="mo.attributes"/>
|
|
199
|
+
<zeroOrMore>
|
|
200
|
+
<ref name="token.content"/>
|
|
201
|
+
</zeroOrMore>
|
|
202
|
+
</element>
|
|
203
|
+
</define>
|
|
204
|
+
<define name="mo.attributes">
|
|
205
|
+
<ref name="CommonAtt"/>
|
|
206
|
+
<ref name="CommonPresAtt"/>
|
|
207
|
+
<ref name="TokenAtt"/>
|
|
208
|
+
<optional>
|
|
209
|
+
<attribute name="form">
|
|
210
|
+
<choice>
|
|
211
|
+
<value>prefix</value>
|
|
212
|
+
<value>infix</value>
|
|
213
|
+
<value>postfix</value>
|
|
214
|
+
</choice>
|
|
215
|
+
</attribute>
|
|
216
|
+
</optional>
|
|
217
|
+
<optional>
|
|
218
|
+
<attribute name="fence">
|
|
219
|
+
<choice>
|
|
220
|
+
<value>true</value>
|
|
221
|
+
<value>false</value>
|
|
222
|
+
</choice>
|
|
223
|
+
</attribute>
|
|
224
|
+
</optional>
|
|
225
|
+
<optional>
|
|
226
|
+
<attribute name="separator">
|
|
227
|
+
<choice>
|
|
228
|
+
<value>true</value>
|
|
229
|
+
<value>false</value>
|
|
230
|
+
</choice>
|
|
231
|
+
</attribute>
|
|
232
|
+
</optional>
|
|
233
|
+
<optional>
|
|
234
|
+
<attribute name="lspace">
|
|
235
|
+
<ref name="length"/>
|
|
236
|
+
</attribute>
|
|
237
|
+
</optional>
|
|
238
|
+
<optional>
|
|
239
|
+
<attribute name="rspace">
|
|
240
|
+
<ref name="length"/>
|
|
241
|
+
</attribute>
|
|
242
|
+
</optional>
|
|
243
|
+
<optional>
|
|
244
|
+
<attribute name="stretchy">
|
|
245
|
+
<choice>
|
|
246
|
+
<value>true</value>
|
|
247
|
+
<value>false</value>
|
|
248
|
+
</choice>
|
|
249
|
+
</attribute>
|
|
250
|
+
</optional>
|
|
251
|
+
<optional>
|
|
252
|
+
<attribute name="symmetric">
|
|
253
|
+
<choice>
|
|
254
|
+
<value>true</value>
|
|
255
|
+
<value>false</value>
|
|
256
|
+
</choice>
|
|
257
|
+
</attribute>
|
|
258
|
+
</optional>
|
|
259
|
+
<optional>
|
|
260
|
+
<attribute name="maxsize">
|
|
261
|
+
<choice>
|
|
262
|
+
<ref name="length"/>
|
|
263
|
+
<value>infinity</value>
|
|
264
|
+
</choice>
|
|
265
|
+
</attribute>
|
|
266
|
+
</optional>
|
|
267
|
+
<optional>
|
|
268
|
+
<attribute name="minsize">
|
|
269
|
+
<ref name="length"/>
|
|
270
|
+
</attribute>
|
|
271
|
+
</optional>
|
|
272
|
+
<optional>
|
|
273
|
+
<attribute name="largeop">
|
|
274
|
+
<choice>
|
|
275
|
+
<value>true</value>
|
|
276
|
+
<value>false</value>
|
|
277
|
+
</choice>
|
|
278
|
+
</attribute>
|
|
279
|
+
</optional>
|
|
280
|
+
<optional>
|
|
281
|
+
<attribute name="movablelimits">
|
|
282
|
+
<choice>
|
|
283
|
+
<value>true</value>
|
|
284
|
+
<value>false</value>
|
|
285
|
+
</choice>
|
|
286
|
+
</attribute>
|
|
287
|
+
</optional>
|
|
288
|
+
<optional>
|
|
289
|
+
<attribute name="accent">
|
|
290
|
+
<choice>
|
|
291
|
+
<value>true</value>
|
|
292
|
+
<value>false</value>
|
|
293
|
+
</choice>
|
|
294
|
+
</attribute>
|
|
295
|
+
</optional>
|
|
296
|
+
<optional>
|
|
297
|
+
<attribute name="linebreak">
|
|
298
|
+
<choice>
|
|
299
|
+
<value>auto</value>
|
|
300
|
+
<value>newline</value>
|
|
301
|
+
<value>nobreak</value>
|
|
302
|
+
<value>goodbreak</value>
|
|
303
|
+
<value>badbreak</value>
|
|
304
|
+
</choice>
|
|
305
|
+
</attribute>
|
|
306
|
+
</optional>
|
|
307
|
+
<optional>
|
|
308
|
+
<attribute name="lineleading">
|
|
309
|
+
<ref name="length"/>
|
|
310
|
+
</attribute>
|
|
311
|
+
</optional>
|
|
312
|
+
<optional>
|
|
313
|
+
<attribute name="linebreakstyle">
|
|
314
|
+
<choice>
|
|
315
|
+
<value>before</value>
|
|
316
|
+
<value>after</value>
|
|
317
|
+
<value>duplicate</value>
|
|
318
|
+
<value>infixlinebreakstyle</value>
|
|
319
|
+
</choice>
|
|
320
|
+
</attribute>
|
|
321
|
+
</optional>
|
|
322
|
+
<optional>
|
|
323
|
+
<attribute name="linebreakmultchar"/>
|
|
324
|
+
</optional>
|
|
325
|
+
<optional>
|
|
326
|
+
<attribute name="indentalign">
|
|
327
|
+
<choice>
|
|
328
|
+
<value>left</value>
|
|
329
|
+
<value>center</value>
|
|
330
|
+
<value>right</value>
|
|
331
|
+
<value>auto</value>
|
|
332
|
+
<value>id</value>
|
|
333
|
+
</choice>
|
|
334
|
+
</attribute>
|
|
335
|
+
</optional>
|
|
336
|
+
<optional>
|
|
337
|
+
<attribute name="indentshift">
|
|
338
|
+
<ref name="length"/>
|
|
339
|
+
</attribute>
|
|
340
|
+
</optional>
|
|
341
|
+
<optional>
|
|
342
|
+
<attribute name="indenttarget">
|
|
343
|
+
<ref name="idref"/>
|
|
344
|
+
</attribute>
|
|
345
|
+
</optional>
|
|
346
|
+
<optional>
|
|
347
|
+
<attribute name="indentalignfirst">
|
|
348
|
+
<choice>
|
|
349
|
+
<value>left</value>
|
|
350
|
+
<value>center</value>
|
|
351
|
+
<value>right</value>
|
|
352
|
+
<value>auto</value>
|
|
353
|
+
<value>id</value>
|
|
354
|
+
<value>indentalign</value>
|
|
355
|
+
</choice>
|
|
356
|
+
</attribute>
|
|
357
|
+
</optional>
|
|
358
|
+
<optional>
|
|
359
|
+
<attribute name="indentshiftfirst">
|
|
360
|
+
<choice>
|
|
361
|
+
<ref name="length"/>
|
|
362
|
+
<value>indentshift</value>
|
|
363
|
+
</choice>
|
|
364
|
+
</attribute>
|
|
365
|
+
</optional>
|
|
366
|
+
<optional>
|
|
367
|
+
<attribute name="indentalignlast">
|
|
368
|
+
<choice>
|
|
369
|
+
<value>left</value>
|
|
370
|
+
<value>center</value>
|
|
371
|
+
<value>right</value>
|
|
372
|
+
<value>auto</value>
|
|
373
|
+
<value>id</value>
|
|
374
|
+
<value>indentalign</value>
|
|
375
|
+
</choice>
|
|
376
|
+
</attribute>
|
|
377
|
+
</optional>
|
|
378
|
+
<optional>
|
|
379
|
+
<attribute name="indentshiftlast">
|
|
380
|
+
<choice>
|
|
381
|
+
<ref name="length"/>
|
|
382
|
+
<value>indentshift</value>
|
|
383
|
+
</choice>
|
|
384
|
+
</attribute>
|
|
385
|
+
</optional>
|
|
386
|
+
</define>
|
|
387
|
+
<!--
|
|
388
|
+
changed mtext content model to use mtext.content instead of generic
|
|
389
|
+
token.content, because we want to handle mtext differently than other
|
|
390
|
+
MathML "token elements" - - mike
|
|
391
|
+
-->
|
|
392
|
+
<define name="mtext">
|
|
393
|
+
<element name="mtext">
|
|
394
|
+
<ref name="mtext.attributes"/>
|
|
395
|
+
<zeroOrMore>
|
|
396
|
+
<ref name="mtext.content"/>
|
|
397
|
+
</zeroOrMore>
|
|
398
|
+
</element>
|
|
399
|
+
</define>
|
|
400
|
+
<define name="mtext.attributes">
|
|
401
|
+
<ref name="CommonAtt"/>
|
|
402
|
+
<ref name="CommonPresAtt"/>
|
|
403
|
+
<ref name="TokenAtt"/>
|
|
404
|
+
</define>
|
|
405
|
+
<define name="mtext.content">
|
|
406
|
+
<choice>
|
|
407
|
+
<ref name="mglyph"/>
|
|
408
|
+
<ref name="malignmark"/>
|
|
409
|
+
<text/>
|
|
410
|
+
</choice>
|
|
411
|
+
</define>
|
|
412
|
+
<define name="mspace">
|
|
413
|
+
<element name="mspace">
|
|
414
|
+
<ref name="mspace.attributes"/>
|
|
415
|
+
<empty/>
|
|
416
|
+
</element>
|
|
417
|
+
</define>
|
|
418
|
+
<define name="mspace.attributes">
|
|
419
|
+
<ref name="CommonAtt"/>
|
|
420
|
+
<ref name="CommonPresAtt"/>
|
|
421
|
+
<ref name="TokenAtt"/>
|
|
422
|
+
<optional>
|
|
423
|
+
<attribute name="width">
|
|
424
|
+
<ref name="length"/>
|
|
425
|
+
</attribute>
|
|
426
|
+
</optional>
|
|
427
|
+
<optional>
|
|
428
|
+
<attribute name="height">
|
|
429
|
+
<ref name="length"/>
|
|
430
|
+
</attribute>
|
|
431
|
+
</optional>
|
|
432
|
+
<optional>
|
|
433
|
+
<attribute name="depth">
|
|
434
|
+
<ref name="length"/>
|
|
435
|
+
</attribute>
|
|
436
|
+
</optional>
|
|
437
|
+
<optional>
|
|
438
|
+
<attribute name="linebreak">
|
|
439
|
+
<choice>
|
|
440
|
+
<value>auto</value>
|
|
441
|
+
<value>newline</value>
|
|
442
|
+
<value>nobreak</value>
|
|
443
|
+
<value>goodbreak</value>
|
|
444
|
+
<value>badbreak</value>
|
|
445
|
+
<value>indentingnewline</value>
|
|
446
|
+
</choice>
|
|
447
|
+
</attribute>
|
|
448
|
+
</optional>
|
|
449
|
+
<optional>
|
|
450
|
+
<attribute name="indentalign">
|
|
451
|
+
<choice>
|
|
452
|
+
<value>left</value>
|
|
453
|
+
<value>center</value>
|
|
454
|
+
<value>right</value>
|
|
455
|
+
<value>auto</value>
|
|
456
|
+
<value>id</value>
|
|
457
|
+
</choice>
|
|
458
|
+
</attribute>
|
|
459
|
+
</optional>
|
|
460
|
+
<optional>
|
|
461
|
+
<attribute name="indentshift">
|
|
462
|
+
<ref name="length"/>
|
|
463
|
+
</attribute>
|
|
464
|
+
</optional>
|
|
465
|
+
<optional>
|
|
466
|
+
<attribute name="indenttarget">
|
|
467
|
+
<ref name="idref"/>
|
|
468
|
+
</attribute>
|
|
469
|
+
</optional>
|
|
470
|
+
<optional>
|
|
471
|
+
<attribute name="indentalignfirst">
|
|
472
|
+
<choice>
|
|
473
|
+
<value>left</value>
|
|
474
|
+
<value>center</value>
|
|
475
|
+
<value>right</value>
|
|
476
|
+
<value>auto</value>
|
|
477
|
+
<value>id</value>
|
|
478
|
+
<value>indentalign</value>
|
|
479
|
+
</choice>
|
|
480
|
+
</attribute>
|
|
481
|
+
</optional>
|
|
482
|
+
<optional>
|
|
483
|
+
<attribute name="indentshiftfirst">
|
|
484
|
+
<choice>
|
|
485
|
+
<ref name="length"/>
|
|
486
|
+
<value>indentshift</value>
|
|
487
|
+
</choice>
|
|
488
|
+
</attribute>
|
|
489
|
+
</optional>
|
|
490
|
+
<optional>
|
|
491
|
+
<attribute name="indentalignlast">
|
|
492
|
+
<choice>
|
|
493
|
+
<value>left</value>
|
|
494
|
+
<value>center</value>
|
|
495
|
+
<value>right</value>
|
|
496
|
+
<value>auto</value>
|
|
497
|
+
<value>id</value>
|
|
498
|
+
<value>indentalign</value>
|
|
499
|
+
</choice>
|
|
500
|
+
</attribute>
|
|
501
|
+
</optional>
|
|
502
|
+
<optional>
|
|
503
|
+
<attribute name="indentshiftlast">
|
|
504
|
+
<choice>
|
|
505
|
+
<ref name="length"/>
|
|
506
|
+
<value>indentshift</value>
|
|
507
|
+
</choice>
|
|
508
|
+
</attribute>
|
|
509
|
+
</optional>
|
|
510
|
+
</define>
|
|
511
|
+
<define name="ms">
|
|
512
|
+
<element name="ms">
|
|
513
|
+
<ref name="ms.attributes"/>
|
|
514
|
+
<zeroOrMore>
|
|
515
|
+
<ref name="token.content"/>
|
|
516
|
+
</zeroOrMore>
|
|
517
|
+
</element>
|
|
518
|
+
</define>
|
|
519
|
+
<define name="ms.attributes">
|
|
520
|
+
<ref name="CommonAtt"/>
|
|
521
|
+
<ref name="CommonPresAtt"/>
|
|
522
|
+
<ref name="TokenAtt"/>
|
|
523
|
+
<optional>
|
|
524
|
+
<attribute name="lquote"/>
|
|
525
|
+
</optional>
|
|
526
|
+
<optional>
|
|
527
|
+
<attribute name="rquote"/>
|
|
528
|
+
</optional>
|
|
529
|
+
</define>
|
|
530
|
+
<define name="mglyph">
|
|
531
|
+
<element name="mglyph">
|
|
532
|
+
<ref name="mglyph.attributes"/>
|
|
533
|
+
<ref name="mglyph.deprecatedattributes"/>
|
|
534
|
+
<empty/>
|
|
535
|
+
</element>
|
|
536
|
+
</define>
|
|
537
|
+
<define name="mglyph.attributes">
|
|
538
|
+
<ref name="CommonAtt"/>
|
|
539
|
+
<ref name="CommonPresAtt"/>
|
|
540
|
+
<optional>
|
|
541
|
+
<attribute name="src">
|
|
542
|
+
<data type="anyURI"/>
|
|
543
|
+
</attribute>
|
|
544
|
+
</optional>
|
|
545
|
+
<optional>
|
|
546
|
+
<attribute name="width">
|
|
547
|
+
<ref name="length"/>
|
|
548
|
+
</attribute>
|
|
549
|
+
</optional>
|
|
550
|
+
<optional>
|
|
551
|
+
<attribute name="height">
|
|
552
|
+
<ref name="length"/>
|
|
553
|
+
</attribute>
|
|
554
|
+
</optional>
|
|
555
|
+
<optional>
|
|
556
|
+
<attribute name="valign">
|
|
557
|
+
<ref name="length"/>
|
|
558
|
+
</attribute>
|
|
559
|
+
</optional>
|
|
560
|
+
<optional>
|
|
561
|
+
<attribute name="alt"/>
|
|
562
|
+
</optional>
|
|
563
|
+
</define>
|
|
564
|
+
<define name="mglyph.deprecatedattributes">
|
|
565
|
+
<optional>
|
|
566
|
+
<attribute name="index">
|
|
567
|
+
<ref name="integer"/>
|
|
568
|
+
</attribute>
|
|
569
|
+
</optional>
|
|
570
|
+
<optional>
|
|
571
|
+
<attribute name="mathvariant">
|
|
572
|
+
<choice>
|
|
573
|
+
<value>normal</value>
|
|
574
|
+
<value>bold</value>
|
|
575
|
+
<value>italic</value>
|
|
576
|
+
<value>bold-italic</value>
|
|
577
|
+
<value>double-struck</value>
|
|
578
|
+
<value>bold-fraktur</value>
|
|
579
|
+
<value>script</value>
|
|
580
|
+
<value>bold-script</value>
|
|
581
|
+
<value>fraktur</value>
|
|
582
|
+
<value>sans-serif</value>
|
|
583
|
+
<value>bold-sans-serif</value>
|
|
584
|
+
<value>sans-serif-italic</value>
|
|
585
|
+
<value>sans-serif-bold-italic</value>
|
|
586
|
+
<value>monospace</value>
|
|
587
|
+
<value>initial</value>
|
|
588
|
+
<value>tailed</value>
|
|
589
|
+
<value>looped</value>
|
|
590
|
+
<value>stretched</value>
|
|
591
|
+
</choice>
|
|
592
|
+
</attribute>
|
|
593
|
+
</optional>
|
|
594
|
+
<optional>
|
|
595
|
+
<attribute name="mathsize">
|
|
596
|
+
<choice>
|
|
597
|
+
<value>small</value>
|
|
598
|
+
<value>normal</value>
|
|
599
|
+
<value>big</value>
|
|
600
|
+
<ref name="length"/>
|
|
601
|
+
</choice>
|
|
602
|
+
</attribute>
|
|
603
|
+
</optional>
|
|
604
|
+
<ref name="DeprecatedTokenAtt"/>
|
|
605
|
+
</define>
|
|
606
|
+
<define name="msline">
|
|
607
|
+
<element name="msline">
|
|
608
|
+
<ref name="msline.attributes"/>
|
|
609
|
+
<empty/>
|
|
610
|
+
</element>
|
|
611
|
+
</define>
|
|
612
|
+
<define name="msline.attributes">
|
|
613
|
+
<ref name="CommonAtt"/>
|
|
614
|
+
<ref name="CommonPresAtt"/>
|
|
615
|
+
<optional>
|
|
616
|
+
<attribute name="position">
|
|
617
|
+
<ref name="integer"/>
|
|
618
|
+
</attribute>
|
|
619
|
+
</optional>
|
|
620
|
+
<optional>
|
|
621
|
+
<attribute name="length">
|
|
622
|
+
<ref name="unsigned-integer"/>
|
|
623
|
+
</attribute>
|
|
624
|
+
</optional>
|
|
625
|
+
<optional>
|
|
626
|
+
<attribute name="leftoverhang">
|
|
627
|
+
<ref name="length"/>
|
|
628
|
+
</attribute>
|
|
629
|
+
</optional>
|
|
630
|
+
<optional>
|
|
631
|
+
<attribute name="rightoverhang">
|
|
632
|
+
<ref name="length"/>
|
|
633
|
+
</attribute>
|
|
634
|
+
</optional>
|
|
635
|
+
<optional>
|
|
636
|
+
<attribute name="mslinethickness">
|
|
637
|
+
<choice>
|
|
638
|
+
<ref name="length"/>
|
|
639
|
+
<value>thin</value>
|
|
640
|
+
<value>medium</value>
|
|
641
|
+
<value>thick</value>
|
|
642
|
+
</choice>
|
|
643
|
+
</attribute>
|
|
644
|
+
</optional>
|
|
645
|
+
</define>
|
|
646
|
+
<define name="none">
|
|
647
|
+
<element name="none">
|
|
648
|
+
<ref name="none.attributes"/>
|
|
649
|
+
<empty/>
|
|
650
|
+
</element>
|
|
651
|
+
</define>
|
|
652
|
+
<define name="none.attributes">
|
|
653
|
+
<ref name="CommonAtt"/>
|
|
654
|
+
<ref name="CommonPresAtt"/>
|
|
655
|
+
</define>
|
|
656
|
+
<define name="mprescripts">
|
|
657
|
+
<element name="mprescripts">
|
|
658
|
+
<ref name="mprescripts.attributes"/>
|
|
659
|
+
<empty/>
|
|
660
|
+
</element>
|
|
661
|
+
</define>
|
|
662
|
+
<define name="mprescripts.attributes">
|
|
663
|
+
<ref name="CommonAtt"/>
|
|
664
|
+
<ref name="CommonPresAtt"/>
|
|
665
|
+
</define>
|
|
666
|
+
<define name="CommonPresAtt">
|
|
667
|
+
<optional>
|
|
668
|
+
<attribute name="mathcolor">
|
|
669
|
+
<ref name="color"/>
|
|
670
|
+
</attribute>
|
|
671
|
+
</optional>
|
|
672
|
+
<optional>
|
|
673
|
+
<attribute name="mathbackground">
|
|
674
|
+
<choice>
|
|
675
|
+
<ref name="color"/>
|
|
676
|
+
<value>transparent</value>
|
|
677
|
+
</choice>
|
|
678
|
+
</attribute>
|
|
679
|
+
</optional>
|
|
680
|
+
</define>
|
|
681
|
+
<define name="TokenAtt">
|
|
682
|
+
<optional>
|
|
683
|
+
<attribute name="mathvariant">
|
|
684
|
+
<choice>
|
|
685
|
+
<value>normal</value>
|
|
686
|
+
<value>bold</value>
|
|
687
|
+
<value>italic</value>
|
|
688
|
+
<value>bold-italic</value>
|
|
689
|
+
<value>double-struck</value>
|
|
690
|
+
<value>bold-fraktur</value>
|
|
691
|
+
<value>script</value>
|
|
692
|
+
<value>bold-script</value>
|
|
693
|
+
<value>fraktur</value>
|
|
694
|
+
<value>sans-serif</value>
|
|
695
|
+
<value>bold-sans-serif</value>
|
|
696
|
+
<value>sans-serif-italic</value>
|
|
697
|
+
<value>sans-serif-bold-italic</value>
|
|
698
|
+
<value>monospace</value>
|
|
699
|
+
<value>initial</value>
|
|
700
|
+
<value>tailed</value>
|
|
701
|
+
<value>looped</value>
|
|
702
|
+
<value>stretched</value>
|
|
703
|
+
</choice>
|
|
704
|
+
</attribute>
|
|
705
|
+
</optional>
|
|
706
|
+
<optional>
|
|
707
|
+
<attribute name="mathsize">
|
|
708
|
+
<choice>
|
|
709
|
+
<value>small</value>
|
|
710
|
+
<value>normal</value>
|
|
711
|
+
<value>big</value>
|
|
712
|
+
<ref name="length"/>
|
|
713
|
+
</choice>
|
|
714
|
+
</attribute>
|
|
715
|
+
</optional>
|
|
716
|
+
<optional>
|
|
717
|
+
<attribute name="dir">
|
|
718
|
+
<choice>
|
|
719
|
+
<value>ltr</value>
|
|
720
|
+
<value>rtl</value>
|
|
721
|
+
</choice>
|
|
722
|
+
</attribute>
|
|
723
|
+
</optional>
|
|
724
|
+
<ref name="DeprecatedTokenAtt"/>
|
|
725
|
+
</define>
|
|
726
|
+
<define name="DeprecatedTokenAtt">
|
|
727
|
+
<optional>
|
|
728
|
+
<attribute name="fontfamily"/>
|
|
729
|
+
</optional>
|
|
730
|
+
<optional>
|
|
731
|
+
<attribute name="fontweight">
|
|
732
|
+
<choice>
|
|
733
|
+
<value>normal</value>
|
|
734
|
+
<value>bold</value>
|
|
735
|
+
</choice>
|
|
736
|
+
</attribute>
|
|
737
|
+
</optional>
|
|
738
|
+
<optional>
|
|
739
|
+
<attribute name="fontstyle">
|
|
740
|
+
<choice>
|
|
741
|
+
<value>normal</value>
|
|
742
|
+
<value>italic</value>
|
|
743
|
+
</choice>
|
|
744
|
+
</attribute>
|
|
745
|
+
</optional>
|
|
746
|
+
<optional>
|
|
747
|
+
<attribute name="fontsize">
|
|
748
|
+
<ref name="length"/>
|
|
749
|
+
</attribute>
|
|
750
|
+
</optional>
|
|
751
|
+
<optional>
|
|
752
|
+
<attribute name="color">
|
|
753
|
+
<ref name="color"/>
|
|
754
|
+
</attribute>
|
|
755
|
+
</optional>
|
|
756
|
+
<optional>
|
|
757
|
+
<attribute name="background">
|
|
758
|
+
<choice>
|
|
759
|
+
<ref name="color"/>
|
|
760
|
+
<value>transparent</value>
|
|
761
|
+
</choice>
|
|
762
|
+
</attribute>
|
|
763
|
+
</optional>
|
|
764
|
+
</define>
|
|
765
|
+
<define name="MalignExpression">
|
|
766
|
+
<choice>
|
|
767
|
+
<ref name="maligngroup"/>
|
|
768
|
+
<ref name="malignmark"/>
|
|
769
|
+
</choice>
|
|
770
|
+
</define>
|
|
771
|
+
<define name="malignmark">
|
|
772
|
+
<element name="malignmark">
|
|
773
|
+
<ref name="malignmark.attributes"/>
|
|
774
|
+
<empty/>
|
|
775
|
+
</element>
|
|
776
|
+
</define>
|
|
777
|
+
<define name="malignmark.attributes">
|
|
778
|
+
<ref name="CommonAtt"/>
|
|
779
|
+
<ref name="CommonPresAtt"/>
|
|
780
|
+
<optional>
|
|
781
|
+
<attribute name="edge">
|
|
782
|
+
<choice>
|
|
783
|
+
<value>left</value>
|
|
784
|
+
<value>right</value>
|
|
785
|
+
</choice>
|
|
786
|
+
</attribute>
|
|
787
|
+
</optional>
|
|
788
|
+
</define>
|
|
789
|
+
<define name="maligngroup">
|
|
790
|
+
<element name="maligngroup">
|
|
791
|
+
<ref name="maligngroup.attributes"/>
|
|
792
|
+
<empty/>
|
|
793
|
+
</element>
|
|
794
|
+
</define>
|
|
795
|
+
<define name="maligngroup.attributes">
|
|
796
|
+
<ref name="CommonAtt"/>
|
|
797
|
+
<ref name="CommonPresAtt"/>
|
|
798
|
+
<optional>
|
|
799
|
+
<attribute name="groupalign">
|
|
800
|
+
<choice>
|
|
801
|
+
<value>left</value>
|
|
802
|
+
<value>center</value>
|
|
803
|
+
<value>right</value>
|
|
804
|
+
<value>decimalpoint</value>
|
|
805
|
+
</choice>
|
|
806
|
+
</attribute>
|
|
807
|
+
</optional>
|
|
808
|
+
</define>
|
|
809
|
+
<define name="PresentationExpression">
|
|
810
|
+
<choice>
|
|
811
|
+
<ref name="TokenExpression"/>
|
|
812
|
+
<ref name="MalignExpression"/>
|
|
813
|
+
<ref name="mrow"/>
|
|
814
|
+
<ref name="mfrac"/>
|
|
815
|
+
<ref name="msqrt"/>
|
|
816
|
+
<ref name="mroot"/>
|
|
817
|
+
<ref name="mstyle"/>
|
|
818
|
+
<ref name="merror"/>
|
|
819
|
+
<ref name="mpadded"/>
|
|
820
|
+
<ref name="mphantom"/>
|
|
821
|
+
<ref name="mfenced"/>
|
|
822
|
+
<ref name="menclose"/>
|
|
823
|
+
<ref name="msub"/>
|
|
824
|
+
<ref name="msup"/>
|
|
825
|
+
<ref name="msubsup"/>
|
|
826
|
+
<ref name="munder"/>
|
|
827
|
+
<ref name="mover"/>
|
|
828
|
+
<ref name="munderover"/>
|
|
829
|
+
<ref name="mmultiscripts"/>
|
|
830
|
+
<ref name="mtable"/>
|
|
831
|
+
<ref name="mstack"/>
|
|
832
|
+
<ref name="mlongdiv"/>
|
|
833
|
+
<ref name="maction"/>
|
|
834
|
+
</choice>
|
|
835
|
+
</define>
|
|
836
|
+
<define name="mrow">
|
|
837
|
+
<element name="mrow">
|
|
838
|
+
<ref name="mrow.attributes"/>
|
|
839
|
+
<zeroOrMore>
|
|
840
|
+
<ref name="MathExpression"/>
|
|
841
|
+
</zeroOrMore>
|
|
842
|
+
</element>
|
|
843
|
+
</define>
|
|
844
|
+
<define name="mrow.attributes">
|
|
845
|
+
<ref name="CommonAtt"/>
|
|
846
|
+
<ref name="CommonPresAtt"/>
|
|
847
|
+
<optional>
|
|
848
|
+
<attribute name="dir">
|
|
849
|
+
<choice>
|
|
850
|
+
<value>ltr</value>
|
|
851
|
+
<value>rtl</value>
|
|
852
|
+
</choice>
|
|
853
|
+
</attribute>
|
|
854
|
+
</optional>
|
|
855
|
+
</define>
|
|
856
|
+
<define name="mfrac">
|
|
857
|
+
<element name="mfrac">
|
|
858
|
+
<ref name="mfrac.attributes"/>
|
|
859
|
+
<ref name="MathExpression"/>
|
|
860
|
+
<ref name="MathExpression"/>
|
|
861
|
+
</element>
|
|
862
|
+
</define>
|
|
863
|
+
<define name="mfrac.attributes">
|
|
864
|
+
<ref name="CommonAtt"/>
|
|
865
|
+
<ref name="CommonPresAtt"/>
|
|
866
|
+
<optional>
|
|
867
|
+
<attribute name="linethickness">
|
|
868
|
+
<choice>
|
|
869
|
+
<ref name="length"/>
|
|
870
|
+
<value>thin</value>
|
|
871
|
+
<value>medium</value>
|
|
872
|
+
<value>thick</value>
|
|
873
|
+
</choice>
|
|
874
|
+
</attribute>
|
|
875
|
+
</optional>
|
|
876
|
+
<optional>
|
|
877
|
+
<attribute name="numalign">
|
|
878
|
+
<choice>
|
|
879
|
+
<value>left</value>
|
|
880
|
+
<value>center</value>
|
|
881
|
+
<value>right</value>
|
|
882
|
+
</choice>
|
|
883
|
+
</attribute>
|
|
884
|
+
</optional>
|
|
885
|
+
<optional>
|
|
886
|
+
<attribute name="denomalign">
|
|
887
|
+
<choice>
|
|
888
|
+
<value>left</value>
|
|
889
|
+
<value>center</value>
|
|
890
|
+
<value>right</value>
|
|
891
|
+
</choice>
|
|
892
|
+
</attribute>
|
|
893
|
+
</optional>
|
|
894
|
+
<optional>
|
|
895
|
+
<attribute name="bevelled">
|
|
896
|
+
<choice>
|
|
897
|
+
<value>true</value>
|
|
898
|
+
<value>false</value>
|
|
899
|
+
</choice>
|
|
900
|
+
</attribute>
|
|
901
|
+
</optional>
|
|
902
|
+
</define>
|
|
903
|
+
<define name="msqrt">
|
|
904
|
+
<element name="msqrt">
|
|
905
|
+
<ref name="msqrt.attributes"/>
|
|
906
|
+
<ref name="ImpliedMrow"/>
|
|
907
|
+
</element>
|
|
908
|
+
</define>
|
|
909
|
+
<define name="msqrt.attributes">
|
|
910
|
+
<ref name="CommonAtt"/>
|
|
911
|
+
<ref name="CommonPresAtt"/>
|
|
912
|
+
</define>
|
|
913
|
+
<define name="mroot">
|
|
914
|
+
<element name="mroot">
|
|
915
|
+
<ref name="mroot.attributes"/>
|
|
916
|
+
<ref name="MathExpression"/>
|
|
917
|
+
<ref name="MathExpression"/>
|
|
918
|
+
</element>
|
|
919
|
+
</define>
|
|
920
|
+
<define name="mroot.attributes">
|
|
921
|
+
<ref name="CommonAtt"/>
|
|
922
|
+
<ref name="CommonPresAtt"/>
|
|
923
|
+
</define>
|
|
924
|
+
<define name="mstyle">
|
|
925
|
+
<element name="mstyle">
|
|
926
|
+
<ref name="mstyle.attributes"/>
|
|
927
|
+
<ref name="ImpliedMrow"/>
|
|
928
|
+
</element>
|
|
929
|
+
</define>
|
|
930
|
+
<define name="mstyle.attributes">
|
|
931
|
+
<ref name="CommonAtt"/>
|
|
932
|
+
<ref name="CommonPresAtt"/>
|
|
933
|
+
<ref name="mstyle.specificattributes"/>
|
|
934
|
+
<ref name="mstyle.generalattributes"/>
|
|
935
|
+
<ref name="mstyle.deprecatedattributes"/>
|
|
936
|
+
</define>
|
|
937
|
+
<define name="mstyle.specificattributes">
|
|
938
|
+
<optional>
|
|
939
|
+
<attribute name="scriptlevel">
|
|
940
|
+
<ref name="integer"/>
|
|
941
|
+
</attribute>
|
|
942
|
+
</optional>
|
|
943
|
+
<optional>
|
|
944
|
+
<attribute name="displaystyle">
|
|
945
|
+
<choice>
|
|
946
|
+
<value>true</value>
|
|
947
|
+
<value>false</value>
|
|
948
|
+
</choice>
|
|
949
|
+
</attribute>
|
|
950
|
+
</optional>
|
|
951
|
+
<optional>
|
|
952
|
+
<attribute name="scriptsizemultiplier">
|
|
953
|
+
<ref name="number"/>
|
|
954
|
+
</attribute>
|
|
955
|
+
</optional>
|
|
956
|
+
<optional>
|
|
957
|
+
<attribute name="scriptminsize">
|
|
958
|
+
<ref name="length"/>
|
|
959
|
+
</attribute>
|
|
960
|
+
</optional>
|
|
961
|
+
<optional>
|
|
962
|
+
<attribute name="infixlinebreakstyle">
|
|
963
|
+
<choice>
|
|
964
|
+
<value>before</value>
|
|
965
|
+
<value>after</value>
|
|
966
|
+
<value>duplicate</value>
|
|
967
|
+
</choice>
|
|
968
|
+
</attribute>
|
|
969
|
+
</optional>
|
|
970
|
+
<optional>
|
|
971
|
+
<attribute name="decimalpoint">
|
|
972
|
+
<ref name="character"/>
|
|
973
|
+
</attribute>
|
|
974
|
+
</optional>
|
|
975
|
+
</define>
|
|
976
|
+
<define name="mstyle.generalattributes">
|
|
977
|
+
<optional>
|
|
978
|
+
<attribute name="accent">
|
|
979
|
+
<choice>
|
|
980
|
+
<value>true</value>
|
|
981
|
+
<value>false</value>
|
|
982
|
+
</choice>
|
|
983
|
+
</attribute>
|
|
984
|
+
</optional>
|
|
985
|
+
<optional>
|
|
986
|
+
<attribute name="accentunder">
|
|
987
|
+
<choice>
|
|
988
|
+
<value>true</value>
|
|
989
|
+
<value>false</value>
|
|
990
|
+
</choice>
|
|
991
|
+
</attribute>
|
|
992
|
+
</optional>
|
|
993
|
+
<optional>
|
|
994
|
+
<attribute name="align">
|
|
995
|
+
<choice>
|
|
996
|
+
<value>left</value>
|
|
997
|
+
<value>right</value>
|
|
998
|
+
<value>center</value>
|
|
999
|
+
</choice>
|
|
1000
|
+
</attribute>
|
|
1001
|
+
</optional>
|
|
1002
|
+
<optional>
|
|
1003
|
+
<attribute name="alignmentscope">
|
|
1004
|
+
<list>
|
|
1005
|
+
<oneOrMore>
|
|
1006
|
+
<choice>
|
|
1007
|
+
<value>true</value>
|
|
1008
|
+
<value>false</value>
|
|
1009
|
+
</choice>
|
|
1010
|
+
</oneOrMore>
|
|
1011
|
+
</list>
|
|
1012
|
+
</attribute>
|
|
1013
|
+
</optional>
|
|
1014
|
+
<optional>
|
|
1015
|
+
<attribute name="bevelled">
|
|
1016
|
+
<choice>
|
|
1017
|
+
<value>true</value>
|
|
1018
|
+
<value>false</value>
|
|
1019
|
+
</choice>
|
|
1020
|
+
</attribute>
|
|
1021
|
+
</optional>
|
|
1022
|
+
<optional>
|
|
1023
|
+
<attribute name="charalign">
|
|
1024
|
+
<choice>
|
|
1025
|
+
<value>left</value>
|
|
1026
|
+
<value>center</value>
|
|
1027
|
+
<value>right</value>
|
|
1028
|
+
</choice>
|
|
1029
|
+
</attribute>
|
|
1030
|
+
</optional>
|
|
1031
|
+
<optional>
|
|
1032
|
+
<attribute name="charspacing">
|
|
1033
|
+
<choice>
|
|
1034
|
+
<ref name="length"/>
|
|
1035
|
+
<value>loose</value>
|
|
1036
|
+
<value>medium</value>
|
|
1037
|
+
<value>tight</value>
|
|
1038
|
+
</choice>
|
|
1039
|
+
</attribute>
|
|
1040
|
+
</optional>
|
|
1041
|
+
<optional>
|
|
1042
|
+
<attribute name="close"/>
|
|
1043
|
+
</optional>
|
|
1044
|
+
<optional>
|
|
1045
|
+
<attribute name="columnalign">
|
|
1046
|
+
<list>
|
|
1047
|
+
<oneOrMore>
|
|
1048
|
+
<ref name="columnalignstyle"/>
|
|
1049
|
+
</oneOrMore>
|
|
1050
|
+
</list>
|
|
1051
|
+
</attribute>
|
|
1052
|
+
</optional>
|
|
1053
|
+
<optional>
|
|
1054
|
+
<attribute name="columnlines">
|
|
1055
|
+
<list>
|
|
1056
|
+
<oneOrMore>
|
|
1057
|
+
<ref name="linestyle"/>
|
|
1058
|
+
</oneOrMore>
|
|
1059
|
+
</list>
|
|
1060
|
+
</attribute>
|
|
1061
|
+
</optional>
|
|
1062
|
+
<optional>
|
|
1063
|
+
<attribute name="columnspacing">
|
|
1064
|
+
<list>
|
|
1065
|
+
<oneOrMore>
|
|
1066
|
+
<ref name="length"/>
|
|
1067
|
+
</oneOrMore>
|
|
1068
|
+
</list>
|
|
1069
|
+
</attribute>
|
|
1070
|
+
</optional>
|
|
1071
|
+
<optional>
|
|
1072
|
+
<attribute name="columnspan">
|
|
1073
|
+
<ref name="positive-integer"/>
|
|
1074
|
+
</attribute>
|
|
1075
|
+
</optional>
|
|
1076
|
+
<optional>
|
|
1077
|
+
<attribute name="columnwidth">
|
|
1078
|
+
<list>
|
|
1079
|
+
<oneOrMore>
|
|
1080
|
+
<choice>
|
|
1081
|
+
<value>auto</value>
|
|
1082
|
+
<ref name="length"/>
|
|
1083
|
+
<value>fit</value>
|
|
1084
|
+
</choice>
|
|
1085
|
+
</oneOrMore>
|
|
1086
|
+
</list>
|
|
1087
|
+
</attribute>
|
|
1088
|
+
</optional>
|
|
1089
|
+
<optional>
|
|
1090
|
+
<attribute name="crossout">
|
|
1091
|
+
<list>
|
|
1092
|
+
<zeroOrMore>
|
|
1093
|
+
<choice>
|
|
1094
|
+
<value>none</value>
|
|
1095
|
+
<value>updiagonalstrike</value>
|
|
1096
|
+
<value>downdiagonalstrike</value>
|
|
1097
|
+
<value>verticalstrike</value>
|
|
1098
|
+
<value>horizontalstrike</value>
|
|
1099
|
+
</choice>
|
|
1100
|
+
</zeroOrMore>
|
|
1101
|
+
</list>
|
|
1102
|
+
</attribute>
|
|
1103
|
+
</optional>
|
|
1104
|
+
<optional>
|
|
1105
|
+
<attribute name="denomalign">
|
|
1106
|
+
<choice>
|
|
1107
|
+
<value>left</value>
|
|
1108
|
+
<value>center</value>
|
|
1109
|
+
<value>right</value>
|
|
1110
|
+
</choice>
|
|
1111
|
+
</attribute>
|
|
1112
|
+
</optional>
|
|
1113
|
+
<optional>
|
|
1114
|
+
<attribute name="depth">
|
|
1115
|
+
<ref name="length"/>
|
|
1116
|
+
</attribute>
|
|
1117
|
+
</optional>
|
|
1118
|
+
<optional>
|
|
1119
|
+
<attribute name="dir">
|
|
1120
|
+
<choice>
|
|
1121
|
+
<value>ltr</value>
|
|
1122
|
+
<value>rtl</value>
|
|
1123
|
+
</choice>
|
|
1124
|
+
</attribute>
|
|
1125
|
+
</optional>
|
|
1126
|
+
<optional>
|
|
1127
|
+
<attribute name="edge">
|
|
1128
|
+
<choice>
|
|
1129
|
+
<value>left</value>
|
|
1130
|
+
<value>right</value>
|
|
1131
|
+
</choice>
|
|
1132
|
+
</attribute>
|
|
1133
|
+
</optional>
|
|
1134
|
+
<optional>
|
|
1135
|
+
<attribute name="equalcolumns">
|
|
1136
|
+
<choice>
|
|
1137
|
+
<value>true</value>
|
|
1138
|
+
<value>false</value>
|
|
1139
|
+
</choice>
|
|
1140
|
+
</attribute>
|
|
1141
|
+
</optional>
|
|
1142
|
+
<optional>
|
|
1143
|
+
<attribute name="equalrows">
|
|
1144
|
+
<choice>
|
|
1145
|
+
<value>true</value>
|
|
1146
|
+
<value>false</value>
|
|
1147
|
+
</choice>
|
|
1148
|
+
</attribute>
|
|
1149
|
+
</optional>
|
|
1150
|
+
<optional>
|
|
1151
|
+
<attribute name="fence">
|
|
1152
|
+
<choice>
|
|
1153
|
+
<value>true</value>
|
|
1154
|
+
<value>false</value>
|
|
1155
|
+
</choice>
|
|
1156
|
+
</attribute>
|
|
1157
|
+
</optional>
|
|
1158
|
+
<optional>
|
|
1159
|
+
<attribute name="form">
|
|
1160
|
+
<choice>
|
|
1161
|
+
<value>prefix</value>
|
|
1162
|
+
<value>infix</value>
|
|
1163
|
+
<value>postfix</value>
|
|
1164
|
+
</choice>
|
|
1165
|
+
</attribute>
|
|
1166
|
+
</optional>
|
|
1167
|
+
<optional>
|
|
1168
|
+
<attribute name="frame">
|
|
1169
|
+
<ref name="linestyle"/>
|
|
1170
|
+
</attribute>
|
|
1171
|
+
</optional>
|
|
1172
|
+
<optional>
|
|
1173
|
+
<attribute name="framespacing">
|
|
1174
|
+
<list>
|
|
1175
|
+
<ref name="length"/>
|
|
1176
|
+
<ref name="length"/>
|
|
1177
|
+
</list>
|
|
1178
|
+
</attribute>
|
|
1179
|
+
</optional>
|
|
1180
|
+
<optional>
|
|
1181
|
+
<attribute name="groupalign">
|
|
1182
|
+
<ref name="group-alignment-list-list"/>
|
|
1183
|
+
</attribute>
|
|
1184
|
+
</optional>
|
|
1185
|
+
<optional>
|
|
1186
|
+
<attribute name="height">
|
|
1187
|
+
<ref name="length"/>
|
|
1188
|
+
</attribute>
|
|
1189
|
+
</optional>
|
|
1190
|
+
<optional>
|
|
1191
|
+
<attribute name="indentalign">
|
|
1192
|
+
<choice>
|
|
1193
|
+
<value>left</value>
|
|
1194
|
+
<value>center</value>
|
|
1195
|
+
<value>right</value>
|
|
1196
|
+
<value>auto</value>
|
|
1197
|
+
<value>id</value>
|
|
1198
|
+
</choice>
|
|
1199
|
+
</attribute>
|
|
1200
|
+
</optional>
|
|
1201
|
+
<optional>
|
|
1202
|
+
<attribute name="indentalignfirst">
|
|
1203
|
+
<choice>
|
|
1204
|
+
<value>left</value>
|
|
1205
|
+
<value>center</value>
|
|
1206
|
+
<value>right</value>
|
|
1207
|
+
<value>auto</value>
|
|
1208
|
+
<value>id</value>
|
|
1209
|
+
<value>indentalign</value>
|
|
1210
|
+
</choice>
|
|
1211
|
+
</attribute>
|
|
1212
|
+
</optional>
|
|
1213
|
+
<optional>
|
|
1214
|
+
<attribute name="indentalignlast">
|
|
1215
|
+
<choice>
|
|
1216
|
+
<value>left</value>
|
|
1217
|
+
<value>center</value>
|
|
1218
|
+
<value>right</value>
|
|
1219
|
+
<value>auto</value>
|
|
1220
|
+
<value>id</value>
|
|
1221
|
+
<value>indentalign</value>
|
|
1222
|
+
</choice>
|
|
1223
|
+
</attribute>
|
|
1224
|
+
</optional>
|
|
1225
|
+
<optional>
|
|
1226
|
+
<attribute name="indentshift">
|
|
1227
|
+
<ref name="length"/>
|
|
1228
|
+
</attribute>
|
|
1229
|
+
</optional>
|
|
1230
|
+
<optional>
|
|
1231
|
+
<attribute name="indentshiftfirst">
|
|
1232
|
+
<choice>
|
|
1233
|
+
<ref name="length"/>
|
|
1234
|
+
<value>indentshift</value>
|
|
1235
|
+
</choice>
|
|
1236
|
+
</attribute>
|
|
1237
|
+
</optional>
|
|
1238
|
+
<optional>
|
|
1239
|
+
<attribute name="indentshiftlast">
|
|
1240
|
+
<choice>
|
|
1241
|
+
<ref name="length"/>
|
|
1242
|
+
<value>indentshift</value>
|
|
1243
|
+
</choice>
|
|
1244
|
+
</attribute>
|
|
1245
|
+
</optional>
|
|
1246
|
+
<optional>
|
|
1247
|
+
<attribute name="indenttarget">
|
|
1248
|
+
<ref name="idref"/>
|
|
1249
|
+
</attribute>
|
|
1250
|
+
</optional>
|
|
1251
|
+
<optional>
|
|
1252
|
+
<attribute name="largeop">
|
|
1253
|
+
<choice>
|
|
1254
|
+
<value>true</value>
|
|
1255
|
+
<value>false</value>
|
|
1256
|
+
</choice>
|
|
1257
|
+
</attribute>
|
|
1258
|
+
</optional>
|
|
1259
|
+
<optional>
|
|
1260
|
+
<attribute name="leftoverhang">
|
|
1261
|
+
<ref name="length"/>
|
|
1262
|
+
</attribute>
|
|
1263
|
+
</optional>
|
|
1264
|
+
<optional>
|
|
1265
|
+
<attribute name="length">
|
|
1266
|
+
<ref name="unsigned-integer"/>
|
|
1267
|
+
</attribute>
|
|
1268
|
+
</optional>
|
|
1269
|
+
<optional>
|
|
1270
|
+
<attribute name="linebreak">
|
|
1271
|
+
<choice>
|
|
1272
|
+
<value>auto</value>
|
|
1273
|
+
<value>newline</value>
|
|
1274
|
+
<value>nobreak</value>
|
|
1275
|
+
<value>goodbreak</value>
|
|
1276
|
+
<value>badbreak</value>
|
|
1277
|
+
</choice>
|
|
1278
|
+
</attribute>
|
|
1279
|
+
</optional>
|
|
1280
|
+
<optional>
|
|
1281
|
+
<attribute name="linebreakmultchar"/>
|
|
1282
|
+
</optional>
|
|
1283
|
+
<optional>
|
|
1284
|
+
<attribute name="linebreakstyle">
|
|
1285
|
+
<choice>
|
|
1286
|
+
<value>before</value>
|
|
1287
|
+
<value>after</value>
|
|
1288
|
+
<value>duplicate</value>
|
|
1289
|
+
<value>infixlinebreakstyle</value>
|
|
1290
|
+
</choice>
|
|
1291
|
+
</attribute>
|
|
1292
|
+
</optional>
|
|
1293
|
+
<optional>
|
|
1294
|
+
<attribute name="lineleading">
|
|
1295
|
+
<ref name="length"/>
|
|
1296
|
+
</attribute>
|
|
1297
|
+
</optional>
|
|
1298
|
+
<optional>
|
|
1299
|
+
<attribute name="linethickness">
|
|
1300
|
+
<choice>
|
|
1301
|
+
<ref name="length"/>
|
|
1302
|
+
<value>thin</value>
|
|
1303
|
+
<value>medium</value>
|
|
1304
|
+
<value>thick</value>
|
|
1305
|
+
</choice>
|
|
1306
|
+
</attribute>
|
|
1307
|
+
</optional>
|
|
1308
|
+
<optional>
|
|
1309
|
+
<attribute name="location">
|
|
1310
|
+
<choice>
|
|
1311
|
+
<value>w</value>
|
|
1312
|
+
<value>nw</value>
|
|
1313
|
+
<value>n</value>
|
|
1314
|
+
<value>ne</value>
|
|
1315
|
+
<value>e</value>
|
|
1316
|
+
<value>se</value>
|
|
1317
|
+
<value>s</value>
|
|
1318
|
+
<value>sw</value>
|
|
1319
|
+
</choice>
|
|
1320
|
+
</attribute>
|
|
1321
|
+
</optional>
|
|
1322
|
+
<optional>
|
|
1323
|
+
<attribute name="longdivstyle">
|
|
1324
|
+
<choice>
|
|
1325
|
+
<value>lefttop</value>
|
|
1326
|
+
<value>stackedrightright</value>
|
|
1327
|
+
<value>mediumstackedrightright</value>
|
|
1328
|
+
<value>shortstackedrightright</value>
|
|
1329
|
+
<value>righttop</value>
|
|
1330
|
+
<value>left/\right</value>
|
|
1331
|
+
<value>left)(right</value>
|
|
1332
|
+
<value>:right=right</value>
|
|
1333
|
+
<value>stackedleftleft</value>
|
|
1334
|
+
<value>stackedleftlinetop</value>
|
|
1335
|
+
</choice>
|
|
1336
|
+
</attribute>
|
|
1337
|
+
</optional>
|
|
1338
|
+
<optional>
|
|
1339
|
+
<attribute name="lquote"/>
|
|
1340
|
+
</optional>
|
|
1341
|
+
<optional>
|
|
1342
|
+
<attribute name="lspace">
|
|
1343
|
+
<ref name="length"/>
|
|
1344
|
+
</attribute>
|
|
1345
|
+
</optional>
|
|
1346
|
+
<optional>
|
|
1347
|
+
<attribute name="mathsize">
|
|
1348
|
+
<choice>
|
|
1349
|
+
<value>small</value>
|
|
1350
|
+
<value>normal</value>
|
|
1351
|
+
<value>big</value>
|
|
1352
|
+
<ref name="length"/>
|
|
1353
|
+
</choice>
|
|
1354
|
+
</attribute>
|
|
1355
|
+
</optional>
|
|
1356
|
+
<optional>
|
|
1357
|
+
<attribute name="mathvariant">
|
|
1358
|
+
<choice>
|
|
1359
|
+
<value>normal</value>
|
|
1360
|
+
<value>bold</value>
|
|
1361
|
+
<value>italic</value>
|
|
1362
|
+
<value>bold-italic</value>
|
|
1363
|
+
<value>double-struck</value>
|
|
1364
|
+
<value>bold-fraktur</value>
|
|
1365
|
+
<value>script</value>
|
|
1366
|
+
<value>bold-script</value>
|
|
1367
|
+
<value>fraktur</value>
|
|
1368
|
+
<value>sans-serif</value>
|
|
1369
|
+
<value>bold-sans-serif</value>
|
|
1370
|
+
<value>sans-serif-italic</value>
|
|
1371
|
+
<value>sans-serif-bold-italic</value>
|
|
1372
|
+
<value>monospace</value>
|
|
1373
|
+
<value>initial</value>
|
|
1374
|
+
<value>tailed</value>
|
|
1375
|
+
<value>looped</value>
|
|
1376
|
+
<value>stretched</value>
|
|
1377
|
+
</choice>
|
|
1378
|
+
</attribute>
|
|
1379
|
+
</optional>
|
|
1380
|
+
<optional>
|
|
1381
|
+
<attribute name="maxsize">
|
|
1382
|
+
<choice>
|
|
1383
|
+
<ref name="length"/>
|
|
1384
|
+
<value>infinity</value>
|
|
1385
|
+
</choice>
|
|
1386
|
+
</attribute>
|
|
1387
|
+
</optional>
|
|
1388
|
+
<optional>
|
|
1389
|
+
<attribute name="minlabelspacing">
|
|
1390
|
+
<ref name="length"/>
|
|
1391
|
+
</attribute>
|
|
1392
|
+
</optional>
|
|
1393
|
+
<optional>
|
|
1394
|
+
<attribute name="minsize">
|
|
1395
|
+
<ref name="length"/>
|
|
1396
|
+
</attribute>
|
|
1397
|
+
</optional>
|
|
1398
|
+
<optional>
|
|
1399
|
+
<attribute name="movablelimits">
|
|
1400
|
+
<choice>
|
|
1401
|
+
<value>true</value>
|
|
1402
|
+
<value>false</value>
|
|
1403
|
+
</choice>
|
|
1404
|
+
</attribute>
|
|
1405
|
+
</optional>
|
|
1406
|
+
<optional>
|
|
1407
|
+
<attribute name="mslinethickness">
|
|
1408
|
+
<choice>
|
|
1409
|
+
<ref name="length"/>
|
|
1410
|
+
<value>thin</value>
|
|
1411
|
+
<value>medium</value>
|
|
1412
|
+
<value>thick</value>
|
|
1413
|
+
</choice>
|
|
1414
|
+
</attribute>
|
|
1415
|
+
</optional>
|
|
1416
|
+
<optional>
|
|
1417
|
+
<attribute name="notation"/>
|
|
1418
|
+
</optional>
|
|
1419
|
+
<optional>
|
|
1420
|
+
<attribute name="numalign">
|
|
1421
|
+
<choice>
|
|
1422
|
+
<value>left</value>
|
|
1423
|
+
<value>center</value>
|
|
1424
|
+
<value>right</value>
|
|
1425
|
+
</choice>
|
|
1426
|
+
</attribute>
|
|
1427
|
+
</optional>
|
|
1428
|
+
<optional>
|
|
1429
|
+
<attribute name="open"/>
|
|
1430
|
+
</optional>
|
|
1431
|
+
<optional>
|
|
1432
|
+
<attribute name="position">
|
|
1433
|
+
<ref name="integer"/>
|
|
1434
|
+
</attribute>
|
|
1435
|
+
</optional>
|
|
1436
|
+
<optional>
|
|
1437
|
+
<attribute name="rightoverhang">
|
|
1438
|
+
<ref name="length"/>
|
|
1439
|
+
</attribute>
|
|
1440
|
+
</optional>
|
|
1441
|
+
<optional>
|
|
1442
|
+
<attribute name="rowalign">
|
|
1443
|
+
<list>
|
|
1444
|
+
<oneOrMore>
|
|
1445
|
+
<ref name="verticalalign"/>
|
|
1446
|
+
</oneOrMore>
|
|
1447
|
+
</list>
|
|
1448
|
+
</attribute>
|
|
1449
|
+
</optional>
|
|
1450
|
+
<optional>
|
|
1451
|
+
<attribute name="rowlines">
|
|
1452
|
+
<list>
|
|
1453
|
+
<oneOrMore>
|
|
1454
|
+
<ref name="linestyle"/>
|
|
1455
|
+
</oneOrMore>
|
|
1456
|
+
</list>
|
|
1457
|
+
</attribute>
|
|
1458
|
+
</optional>
|
|
1459
|
+
<optional>
|
|
1460
|
+
<attribute name="rowspacing">
|
|
1461
|
+
<list>
|
|
1462
|
+
<oneOrMore>
|
|
1463
|
+
<ref name="length"/>
|
|
1464
|
+
</oneOrMore>
|
|
1465
|
+
</list>
|
|
1466
|
+
</attribute>
|
|
1467
|
+
</optional>
|
|
1468
|
+
<optional>
|
|
1469
|
+
<attribute name="rowspan">
|
|
1470
|
+
<ref name="positive-integer"/>
|
|
1471
|
+
</attribute>
|
|
1472
|
+
</optional>
|
|
1473
|
+
<optional>
|
|
1474
|
+
<attribute name="rquote"/>
|
|
1475
|
+
</optional>
|
|
1476
|
+
<optional>
|
|
1477
|
+
<attribute name="rspace">
|
|
1478
|
+
<ref name="length"/>
|
|
1479
|
+
</attribute>
|
|
1480
|
+
</optional>
|
|
1481
|
+
<optional>
|
|
1482
|
+
<attribute name="selection">
|
|
1483
|
+
<ref name="positive-integer"/>
|
|
1484
|
+
</attribute>
|
|
1485
|
+
</optional>
|
|
1486
|
+
<optional>
|
|
1487
|
+
<attribute name="separator">
|
|
1488
|
+
<choice>
|
|
1489
|
+
<value>true</value>
|
|
1490
|
+
<value>false</value>
|
|
1491
|
+
</choice>
|
|
1492
|
+
</attribute>
|
|
1493
|
+
</optional>
|
|
1494
|
+
<optional>
|
|
1495
|
+
<attribute name="separators"/>
|
|
1496
|
+
</optional>
|
|
1497
|
+
<optional>
|
|
1498
|
+
<attribute name="shift">
|
|
1499
|
+
<ref name="integer"/>
|
|
1500
|
+
</attribute>
|
|
1501
|
+
</optional>
|
|
1502
|
+
<optional>
|
|
1503
|
+
<attribute name="side">
|
|
1504
|
+
<choice>
|
|
1505
|
+
<value>left</value>
|
|
1506
|
+
<value>right</value>
|
|
1507
|
+
<value>leftoverlap</value>
|
|
1508
|
+
<value>rightoverlap</value>
|
|
1509
|
+
</choice>
|
|
1510
|
+
</attribute>
|
|
1511
|
+
</optional>
|
|
1512
|
+
<optional>
|
|
1513
|
+
<attribute name="stackalign">
|
|
1514
|
+
<choice>
|
|
1515
|
+
<value>left</value>
|
|
1516
|
+
<value>center</value>
|
|
1517
|
+
<value>right</value>
|
|
1518
|
+
<value>decimalpoint</value>
|
|
1519
|
+
</choice>
|
|
1520
|
+
</attribute>
|
|
1521
|
+
</optional>
|
|
1522
|
+
<optional>
|
|
1523
|
+
<attribute name="stretchy">
|
|
1524
|
+
<choice>
|
|
1525
|
+
<value>true</value>
|
|
1526
|
+
<value>false</value>
|
|
1527
|
+
</choice>
|
|
1528
|
+
</attribute>
|
|
1529
|
+
</optional>
|
|
1530
|
+
<optional>
|
|
1531
|
+
<attribute name="subscriptshift">
|
|
1532
|
+
<ref name="length"/>
|
|
1533
|
+
</attribute>
|
|
1534
|
+
</optional>
|
|
1535
|
+
<optional>
|
|
1536
|
+
<attribute name="superscriptshift">
|
|
1537
|
+
<ref name="length"/>
|
|
1538
|
+
</attribute>
|
|
1539
|
+
</optional>
|
|
1540
|
+
<optional>
|
|
1541
|
+
<attribute name="symmetric">
|
|
1542
|
+
<choice>
|
|
1543
|
+
<value>true</value>
|
|
1544
|
+
<value>false</value>
|
|
1545
|
+
</choice>
|
|
1546
|
+
</attribute>
|
|
1547
|
+
</optional>
|
|
1548
|
+
<optional>
|
|
1549
|
+
<attribute name="valign">
|
|
1550
|
+
<ref name="length"/>
|
|
1551
|
+
</attribute>
|
|
1552
|
+
</optional>
|
|
1553
|
+
<optional>
|
|
1554
|
+
<attribute name="width">
|
|
1555
|
+
<ref name="length"/>
|
|
1556
|
+
</attribute>
|
|
1557
|
+
</optional>
|
|
1558
|
+
</define>
|
|
1559
|
+
<define name="mstyle.deprecatedattributes">
|
|
1560
|
+
<ref name="DeprecatedTokenAtt"/>
|
|
1561
|
+
<optional>
|
|
1562
|
+
<attribute name="veryverythinmathspace">
|
|
1563
|
+
<ref name="length"/>
|
|
1564
|
+
</attribute>
|
|
1565
|
+
</optional>
|
|
1566
|
+
<optional>
|
|
1567
|
+
<attribute name="verythinmathspace">
|
|
1568
|
+
<ref name="length"/>
|
|
1569
|
+
</attribute>
|
|
1570
|
+
</optional>
|
|
1571
|
+
<optional>
|
|
1572
|
+
<attribute name="thinmathspace">
|
|
1573
|
+
<ref name="length"/>
|
|
1574
|
+
</attribute>
|
|
1575
|
+
</optional>
|
|
1576
|
+
<optional>
|
|
1577
|
+
<attribute name="mediummathspace">
|
|
1578
|
+
<ref name="length"/>
|
|
1579
|
+
</attribute>
|
|
1580
|
+
</optional>
|
|
1581
|
+
<optional>
|
|
1582
|
+
<attribute name="thickmathspace">
|
|
1583
|
+
<ref name="length"/>
|
|
1584
|
+
</attribute>
|
|
1585
|
+
</optional>
|
|
1586
|
+
<optional>
|
|
1587
|
+
<attribute name="verythickmathspace">
|
|
1588
|
+
<ref name="length"/>
|
|
1589
|
+
</attribute>
|
|
1590
|
+
</optional>
|
|
1591
|
+
<optional>
|
|
1592
|
+
<attribute name="veryverythickmathspace">
|
|
1593
|
+
<ref name="length"/>
|
|
1594
|
+
</attribute>
|
|
1595
|
+
</optional>
|
|
1596
|
+
</define>
|
|
1597
|
+
<define name="math.attributes" combine="interleave">
|
|
1598
|
+
<ref name="CommonPresAtt"/>
|
|
1599
|
+
</define>
|
|
1600
|
+
<define name="math.attributes" combine="interleave">
|
|
1601
|
+
<ref name="mstyle.specificattributes"/>
|
|
1602
|
+
</define>
|
|
1603
|
+
<define name="math.attributes" combine="interleave">
|
|
1604
|
+
<ref name="mstyle.generalattributes"/>
|
|
1605
|
+
</define>
|
|
1606
|
+
<define name="merror">
|
|
1607
|
+
<element name="merror">
|
|
1608
|
+
<ref name="merror.attributes"/>
|
|
1609
|
+
<ref name="ImpliedMrow"/>
|
|
1610
|
+
</element>
|
|
1611
|
+
</define>
|
|
1612
|
+
<define name="merror.attributes">
|
|
1613
|
+
<ref name="CommonAtt"/>
|
|
1614
|
+
<ref name="CommonPresAtt"/>
|
|
1615
|
+
</define>
|
|
1616
|
+
<define name="mpadded">
|
|
1617
|
+
<element name="mpadded">
|
|
1618
|
+
<ref name="mpadded.attributes"/>
|
|
1619
|
+
<ref name="ImpliedMrow"/>
|
|
1620
|
+
</element>
|
|
1621
|
+
</define>
|
|
1622
|
+
<define name="mpadded.attributes">
|
|
1623
|
+
<ref name="CommonAtt"/>
|
|
1624
|
+
<ref name="CommonPresAtt"/>
|
|
1625
|
+
<optional>
|
|
1626
|
+
<attribute name="height">
|
|
1627
|
+
<ref name="mpadded-length"/>
|
|
1628
|
+
</attribute>
|
|
1629
|
+
</optional>
|
|
1630
|
+
<optional>
|
|
1631
|
+
<attribute name="depth">
|
|
1632
|
+
<ref name="mpadded-length"/>
|
|
1633
|
+
</attribute>
|
|
1634
|
+
</optional>
|
|
1635
|
+
<optional>
|
|
1636
|
+
<attribute name="width">
|
|
1637
|
+
<ref name="mpadded-length"/>
|
|
1638
|
+
</attribute>
|
|
1639
|
+
</optional>
|
|
1640
|
+
<optional>
|
|
1641
|
+
<attribute name="lspace">
|
|
1642
|
+
<ref name="mpadded-length"/>
|
|
1643
|
+
</attribute>
|
|
1644
|
+
</optional>
|
|
1645
|
+
<optional>
|
|
1646
|
+
<attribute name="voffset">
|
|
1647
|
+
<ref name="mpadded-length"/>
|
|
1648
|
+
</attribute>
|
|
1649
|
+
</optional>
|
|
1650
|
+
</define>
|
|
1651
|
+
<define name="mphantom">
|
|
1652
|
+
<element name="mphantom">
|
|
1653
|
+
<ref name="mphantom.attributes"/>
|
|
1654
|
+
<ref name="ImpliedMrow"/>
|
|
1655
|
+
</element>
|
|
1656
|
+
</define>
|
|
1657
|
+
<define name="mphantom.attributes">
|
|
1658
|
+
<ref name="CommonAtt"/>
|
|
1659
|
+
<ref name="CommonPresAtt"/>
|
|
1660
|
+
</define>
|
|
1661
|
+
<define name="mfenced">
|
|
1662
|
+
<element name="mfenced">
|
|
1663
|
+
<ref name="mfenced.attributes"/>
|
|
1664
|
+
<zeroOrMore>
|
|
1665
|
+
<ref name="MathExpression"/>
|
|
1666
|
+
</zeroOrMore>
|
|
1667
|
+
</element>
|
|
1668
|
+
</define>
|
|
1669
|
+
<define name="mfenced.attributes">
|
|
1670
|
+
<ref name="CommonAtt"/>
|
|
1671
|
+
<ref name="CommonPresAtt"/>
|
|
1672
|
+
<optional>
|
|
1673
|
+
<attribute name="open"/>
|
|
1674
|
+
</optional>
|
|
1675
|
+
<optional>
|
|
1676
|
+
<attribute name="close"/>
|
|
1677
|
+
</optional>
|
|
1678
|
+
<optional>
|
|
1679
|
+
<attribute name="separators"/>
|
|
1680
|
+
</optional>
|
|
1681
|
+
</define>
|
|
1682
|
+
<define name="menclose">
|
|
1683
|
+
<element name="menclose">
|
|
1684
|
+
<ref name="menclose.attributes"/>
|
|
1685
|
+
<ref name="ImpliedMrow"/>
|
|
1686
|
+
</element>
|
|
1687
|
+
</define>
|
|
1688
|
+
<define name="menclose.attributes">
|
|
1689
|
+
<ref name="CommonAtt"/>
|
|
1690
|
+
<ref name="CommonPresAtt"/>
|
|
1691
|
+
<optional>
|
|
1692
|
+
<attribute name="notation"/>
|
|
1693
|
+
</optional>
|
|
1694
|
+
</define>
|
|
1695
|
+
<define name="msub">
|
|
1696
|
+
<element name="msub">
|
|
1697
|
+
<ref name="msub.attributes"/>
|
|
1698
|
+
<ref name="MathExpression"/>
|
|
1699
|
+
<ref name="MathExpression"/>
|
|
1700
|
+
</element>
|
|
1701
|
+
</define>
|
|
1702
|
+
<define name="msub.attributes">
|
|
1703
|
+
<ref name="CommonAtt"/>
|
|
1704
|
+
<ref name="CommonPresAtt"/>
|
|
1705
|
+
<optional>
|
|
1706
|
+
<attribute name="subscriptshift">
|
|
1707
|
+
<ref name="length"/>
|
|
1708
|
+
</attribute>
|
|
1709
|
+
</optional>
|
|
1710
|
+
</define>
|
|
1711
|
+
<define name="msup">
|
|
1712
|
+
<element name="msup">
|
|
1713
|
+
<ref name="msup.attributes"/>
|
|
1714
|
+
<ref name="MathExpression"/>
|
|
1715
|
+
<ref name="MathExpression"/>
|
|
1716
|
+
</element>
|
|
1717
|
+
</define>
|
|
1718
|
+
<define name="msup.attributes">
|
|
1719
|
+
<ref name="CommonAtt"/>
|
|
1720
|
+
<ref name="CommonPresAtt"/>
|
|
1721
|
+
<optional>
|
|
1722
|
+
<attribute name="superscriptshift">
|
|
1723
|
+
<ref name="length"/>
|
|
1724
|
+
</attribute>
|
|
1725
|
+
</optional>
|
|
1726
|
+
</define>
|
|
1727
|
+
<define name="msubsup">
|
|
1728
|
+
<element name="msubsup">
|
|
1729
|
+
<ref name="msubsup.attributes"/>
|
|
1730
|
+
<ref name="MathExpression"/>
|
|
1731
|
+
<ref name="MathExpression"/>
|
|
1732
|
+
<ref name="MathExpression"/>
|
|
1733
|
+
</element>
|
|
1734
|
+
</define>
|
|
1735
|
+
<define name="msubsup.attributes">
|
|
1736
|
+
<ref name="CommonAtt"/>
|
|
1737
|
+
<ref name="CommonPresAtt"/>
|
|
1738
|
+
<optional>
|
|
1739
|
+
<attribute name="subscriptshift">
|
|
1740
|
+
<ref name="length"/>
|
|
1741
|
+
</attribute>
|
|
1742
|
+
</optional>
|
|
1743
|
+
<optional>
|
|
1744
|
+
<attribute name="superscriptshift">
|
|
1745
|
+
<ref name="length"/>
|
|
1746
|
+
</attribute>
|
|
1747
|
+
</optional>
|
|
1748
|
+
</define>
|
|
1749
|
+
<define name="munder">
|
|
1750
|
+
<element name="munder">
|
|
1751
|
+
<ref name="munder.attributes"/>
|
|
1752
|
+
<ref name="MathExpression"/>
|
|
1753
|
+
<ref name="MathExpression"/>
|
|
1754
|
+
</element>
|
|
1755
|
+
</define>
|
|
1756
|
+
<define name="munder.attributes">
|
|
1757
|
+
<ref name="CommonAtt"/>
|
|
1758
|
+
<ref name="CommonPresAtt"/>
|
|
1759
|
+
<optional>
|
|
1760
|
+
<attribute name="accentunder">
|
|
1761
|
+
<choice>
|
|
1762
|
+
<value>true</value>
|
|
1763
|
+
<value>false</value>
|
|
1764
|
+
</choice>
|
|
1765
|
+
</attribute>
|
|
1766
|
+
</optional>
|
|
1767
|
+
<optional>
|
|
1768
|
+
<attribute name="align">
|
|
1769
|
+
<choice>
|
|
1770
|
+
<value>left</value>
|
|
1771
|
+
<value>right</value>
|
|
1772
|
+
<value>center</value>
|
|
1773
|
+
</choice>
|
|
1774
|
+
</attribute>
|
|
1775
|
+
</optional>
|
|
1776
|
+
</define>
|
|
1777
|
+
<define name="mover">
|
|
1778
|
+
<element name="mover">
|
|
1779
|
+
<ref name="mover.attributes"/>
|
|
1780
|
+
<ref name="MathExpression"/>
|
|
1781
|
+
<ref name="MathExpression"/>
|
|
1782
|
+
</element>
|
|
1783
|
+
</define>
|
|
1784
|
+
<define name="mover.attributes">
|
|
1785
|
+
<ref name="CommonAtt"/>
|
|
1786
|
+
<ref name="CommonPresAtt"/>
|
|
1787
|
+
<optional>
|
|
1788
|
+
<attribute name="accent">
|
|
1789
|
+
<choice>
|
|
1790
|
+
<value>true</value>
|
|
1791
|
+
<value>false</value>
|
|
1792
|
+
</choice>
|
|
1793
|
+
</attribute>
|
|
1794
|
+
</optional>
|
|
1795
|
+
<optional>
|
|
1796
|
+
<attribute name="align">
|
|
1797
|
+
<choice>
|
|
1798
|
+
<value>left</value>
|
|
1799
|
+
<value>right</value>
|
|
1800
|
+
<value>center</value>
|
|
1801
|
+
</choice>
|
|
1802
|
+
</attribute>
|
|
1803
|
+
</optional>
|
|
1804
|
+
</define>
|
|
1805
|
+
<define name="munderover">
|
|
1806
|
+
<element name="munderover">
|
|
1807
|
+
<ref name="munderover.attributes"/>
|
|
1808
|
+
<ref name="MathExpression"/>
|
|
1809
|
+
<ref name="MathExpression"/>
|
|
1810
|
+
<ref name="MathExpression"/>
|
|
1811
|
+
</element>
|
|
1812
|
+
</define>
|
|
1813
|
+
<define name="munderover.attributes">
|
|
1814
|
+
<ref name="CommonAtt"/>
|
|
1815
|
+
<ref name="CommonPresAtt"/>
|
|
1816
|
+
<optional>
|
|
1817
|
+
<attribute name="accent">
|
|
1818
|
+
<choice>
|
|
1819
|
+
<value>true</value>
|
|
1820
|
+
<value>false</value>
|
|
1821
|
+
</choice>
|
|
1822
|
+
</attribute>
|
|
1823
|
+
</optional>
|
|
1824
|
+
<optional>
|
|
1825
|
+
<attribute name="accentunder">
|
|
1826
|
+
<choice>
|
|
1827
|
+
<value>true</value>
|
|
1828
|
+
<value>false</value>
|
|
1829
|
+
</choice>
|
|
1830
|
+
</attribute>
|
|
1831
|
+
</optional>
|
|
1832
|
+
<optional>
|
|
1833
|
+
<attribute name="align">
|
|
1834
|
+
<choice>
|
|
1835
|
+
<value>left</value>
|
|
1836
|
+
<value>right</value>
|
|
1837
|
+
<value>center</value>
|
|
1838
|
+
</choice>
|
|
1839
|
+
</attribute>
|
|
1840
|
+
</optional>
|
|
1841
|
+
</define>
|
|
1842
|
+
<define name="mmultiscripts">
|
|
1843
|
+
<element name="mmultiscripts">
|
|
1844
|
+
<ref name="mmultiscripts.attributes"/>
|
|
1845
|
+
<ref name="MathExpression"/>
|
|
1846
|
+
<zeroOrMore>
|
|
1847
|
+
<ref name="MultiScriptExpression"/>
|
|
1848
|
+
</zeroOrMore>
|
|
1849
|
+
<optional>
|
|
1850
|
+
<ref name="mprescripts"/>
|
|
1851
|
+
<zeroOrMore>
|
|
1852
|
+
<ref name="MultiScriptExpression"/>
|
|
1853
|
+
</zeroOrMore>
|
|
1854
|
+
</optional>
|
|
1855
|
+
</element>
|
|
1856
|
+
</define>
|
|
1857
|
+
<define name="mmultiscripts.attributes">
|
|
1858
|
+
<ref name="msubsup.attributes"/>
|
|
1859
|
+
</define>
|
|
1860
|
+
<define name="mtable">
|
|
1861
|
+
<element name="mtable">
|
|
1862
|
+
<ref name="mtable.attributes"/>
|
|
1863
|
+
<zeroOrMore>
|
|
1864
|
+
<ref name="TableRowExpression"/>
|
|
1865
|
+
</zeroOrMore>
|
|
1866
|
+
</element>
|
|
1867
|
+
</define>
|
|
1868
|
+
<define name="mtable.attributes">
|
|
1869
|
+
<ref name="CommonAtt"/>
|
|
1870
|
+
<ref name="CommonPresAtt"/>
|
|
1871
|
+
<optional>
|
|
1872
|
+
<attribute name="align">
|
|
1873
|
+
<data type="string">
|
|
1874
|
+
<param name="pattern">\s*(top|bottom|center|baseline|axis)(\s+-?[0-9]+)?\s*</param>
|
|
1875
|
+
</data>
|
|
1876
|
+
</attribute>
|
|
1877
|
+
</optional>
|
|
1878
|
+
<optional>
|
|
1879
|
+
<attribute name="rowalign">
|
|
1880
|
+
<list>
|
|
1881
|
+
<oneOrMore>
|
|
1882
|
+
<ref name="verticalalign"/>
|
|
1883
|
+
</oneOrMore>
|
|
1884
|
+
</list>
|
|
1885
|
+
</attribute>
|
|
1886
|
+
</optional>
|
|
1887
|
+
<optional>
|
|
1888
|
+
<attribute name="columnalign">
|
|
1889
|
+
<list>
|
|
1890
|
+
<oneOrMore>
|
|
1891
|
+
<ref name="columnalignstyle"/>
|
|
1892
|
+
</oneOrMore>
|
|
1893
|
+
</list>
|
|
1894
|
+
</attribute>
|
|
1895
|
+
</optional>
|
|
1896
|
+
<optional>
|
|
1897
|
+
<attribute name="groupalign">
|
|
1898
|
+
<ref name="group-alignment-list-list"/>
|
|
1899
|
+
</attribute>
|
|
1900
|
+
</optional>
|
|
1901
|
+
<optional>
|
|
1902
|
+
<attribute name="alignmentscope">
|
|
1903
|
+
<list>
|
|
1904
|
+
<oneOrMore>
|
|
1905
|
+
<choice>
|
|
1906
|
+
<value>true</value>
|
|
1907
|
+
<value>false</value>
|
|
1908
|
+
</choice>
|
|
1909
|
+
</oneOrMore>
|
|
1910
|
+
</list>
|
|
1911
|
+
</attribute>
|
|
1912
|
+
</optional>
|
|
1913
|
+
<optional>
|
|
1914
|
+
<attribute name="columnwidth">
|
|
1915
|
+
<list>
|
|
1916
|
+
<oneOrMore>
|
|
1917
|
+
<choice>
|
|
1918
|
+
<value>auto</value>
|
|
1919
|
+
<ref name="length"/>
|
|
1920
|
+
<value>fit</value>
|
|
1921
|
+
</choice>
|
|
1922
|
+
</oneOrMore>
|
|
1923
|
+
</list>
|
|
1924
|
+
</attribute>
|
|
1925
|
+
</optional>
|
|
1926
|
+
<optional>
|
|
1927
|
+
<attribute name="width">
|
|
1928
|
+
<choice>
|
|
1929
|
+
<value>auto</value>
|
|
1930
|
+
<ref name="length"/>
|
|
1931
|
+
</choice>
|
|
1932
|
+
</attribute>
|
|
1933
|
+
</optional>
|
|
1934
|
+
<optional>
|
|
1935
|
+
<attribute name="rowspacing">
|
|
1936
|
+
<list>
|
|
1937
|
+
<oneOrMore>
|
|
1938
|
+
<ref name="length"/>
|
|
1939
|
+
</oneOrMore>
|
|
1940
|
+
</list>
|
|
1941
|
+
</attribute>
|
|
1942
|
+
</optional>
|
|
1943
|
+
<optional>
|
|
1944
|
+
<attribute name="columnspacing">
|
|
1945
|
+
<list>
|
|
1946
|
+
<oneOrMore>
|
|
1947
|
+
<ref name="length"/>
|
|
1948
|
+
</oneOrMore>
|
|
1949
|
+
</list>
|
|
1950
|
+
</attribute>
|
|
1951
|
+
</optional>
|
|
1952
|
+
<optional>
|
|
1953
|
+
<attribute name="rowlines">
|
|
1954
|
+
<list>
|
|
1955
|
+
<oneOrMore>
|
|
1956
|
+
<ref name="linestyle"/>
|
|
1957
|
+
</oneOrMore>
|
|
1958
|
+
</list>
|
|
1959
|
+
</attribute>
|
|
1960
|
+
</optional>
|
|
1961
|
+
<optional>
|
|
1962
|
+
<attribute name="columnlines">
|
|
1963
|
+
<list>
|
|
1964
|
+
<oneOrMore>
|
|
1965
|
+
<ref name="linestyle"/>
|
|
1966
|
+
</oneOrMore>
|
|
1967
|
+
</list>
|
|
1968
|
+
</attribute>
|
|
1969
|
+
</optional>
|
|
1970
|
+
<optional>
|
|
1971
|
+
<attribute name="frame">
|
|
1972
|
+
<ref name="linestyle"/>
|
|
1973
|
+
</attribute>
|
|
1974
|
+
</optional>
|
|
1975
|
+
<optional>
|
|
1976
|
+
<attribute name="framespacing">
|
|
1977
|
+
<list>
|
|
1978
|
+
<ref name="length"/>
|
|
1979
|
+
<ref name="length"/>
|
|
1980
|
+
</list>
|
|
1981
|
+
</attribute>
|
|
1982
|
+
</optional>
|
|
1983
|
+
<optional>
|
|
1984
|
+
<attribute name="equalrows">
|
|
1985
|
+
<choice>
|
|
1986
|
+
<value>true</value>
|
|
1987
|
+
<value>false</value>
|
|
1988
|
+
</choice>
|
|
1989
|
+
</attribute>
|
|
1990
|
+
</optional>
|
|
1991
|
+
<optional>
|
|
1992
|
+
<attribute name="equalcolumns">
|
|
1993
|
+
<choice>
|
|
1994
|
+
<value>true</value>
|
|
1995
|
+
<value>false</value>
|
|
1996
|
+
</choice>
|
|
1997
|
+
</attribute>
|
|
1998
|
+
</optional>
|
|
1999
|
+
<optional>
|
|
2000
|
+
<attribute name="displaystyle">
|
|
2001
|
+
<choice>
|
|
2002
|
+
<value>true</value>
|
|
2003
|
+
<value>false</value>
|
|
2004
|
+
</choice>
|
|
2005
|
+
</attribute>
|
|
2006
|
+
</optional>
|
|
2007
|
+
<optional>
|
|
2008
|
+
<attribute name="side">
|
|
2009
|
+
<choice>
|
|
2010
|
+
<value>left</value>
|
|
2011
|
+
<value>right</value>
|
|
2012
|
+
<value>leftoverlap</value>
|
|
2013
|
+
<value>rightoverlap</value>
|
|
2014
|
+
</choice>
|
|
2015
|
+
</attribute>
|
|
2016
|
+
</optional>
|
|
2017
|
+
<optional>
|
|
2018
|
+
<attribute name="minlabelspacing">
|
|
2019
|
+
<ref name="length"/>
|
|
2020
|
+
</attribute>
|
|
2021
|
+
</optional>
|
|
2022
|
+
</define>
|
|
2023
|
+
<define name="mlabeledtr">
|
|
2024
|
+
<element name="mlabeledtr">
|
|
2025
|
+
<ref name="mlabeledtr.attributes"/>
|
|
2026
|
+
<oneOrMore>
|
|
2027
|
+
<ref name="TableCellExpression"/>
|
|
2028
|
+
</oneOrMore>
|
|
2029
|
+
</element>
|
|
2030
|
+
</define>
|
|
2031
|
+
<define name="mlabeledtr.attributes">
|
|
2032
|
+
<ref name="mtr.attributes"/>
|
|
2033
|
+
</define>
|
|
2034
|
+
<define name="mtr">
|
|
2035
|
+
<element name="mtr">
|
|
2036
|
+
<ref name="mtr.attributes"/>
|
|
2037
|
+
<zeroOrMore>
|
|
2038
|
+
<ref name="TableCellExpression"/>
|
|
2039
|
+
</zeroOrMore>
|
|
2040
|
+
</element>
|
|
2041
|
+
</define>
|
|
2042
|
+
<define name="mtr.attributes">
|
|
2043
|
+
<ref name="CommonAtt"/>
|
|
2044
|
+
<ref name="CommonPresAtt"/>
|
|
2045
|
+
<optional>
|
|
2046
|
+
<attribute name="rowalign">
|
|
2047
|
+
<choice>
|
|
2048
|
+
<value>top</value>
|
|
2049
|
+
<value>bottom</value>
|
|
2050
|
+
<value>center</value>
|
|
2051
|
+
<value>baseline</value>
|
|
2052
|
+
<value>axis</value>
|
|
2053
|
+
</choice>
|
|
2054
|
+
</attribute>
|
|
2055
|
+
</optional>
|
|
2056
|
+
<optional>
|
|
2057
|
+
<attribute name="columnalign">
|
|
2058
|
+
<list>
|
|
2059
|
+
<oneOrMore>
|
|
2060
|
+
<ref name="columnalignstyle"/>
|
|
2061
|
+
</oneOrMore>
|
|
2062
|
+
</list>
|
|
2063
|
+
</attribute>
|
|
2064
|
+
</optional>
|
|
2065
|
+
<optional>
|
|
2066
|
+
<attribute name="groupalign">
|
|
2067
|
+
<ref name="group-alignment-list-list"/>
|
|
2068
|
+
</attribute>
|
|
2069
|
+
</optional>
|
|
2070
|
+
</define>
|
|
2071
|
+
<define name="mtd">
|
|
2072
|
+
<element name="mtd">
|
|
2073
|
+
<ref name="mtd.attributes"/>
|
|
2074
|
+
<ref name="ImpliedMrow"/>
|
|
2075
|
+
</element>
|
|
2076
|
+
</define>
|
|
2077
|
+
<define name="mtd.attributes">
|
|
2078
|
+
<ref name="CommonAtt"/>
|
|
2079
|
+
<ref name="CommonPresAtt"/>
|
|
2080
|
+
<optional>
|
|
2081
|
+
<attribute name="rowspan">
|
|
2082
|
+
<ref name="positive-integer"/>
|
|
2083
|
+
</attribute>
|
|
2084
|
+
</optional>
|
|
2085
|
+
<optional>
|
|
2086
|
+
<attribute name="columnspan">
|
|
2087
|
+
<ref name="positive-integer"/>
|
|
2088
|
+
</attribute>
|
|
2089
|
+
</optional>
|
|
2090
|
+
<optional>
|
|
2091
|
+
<attribute name="rowalign">
|
|
2092
|
+
<choice>
|
|
2093
|
+
<value>top</value>
|
|
2094
|
+
<value>bottom</value>
|
|
2095
|
+
<value>center</value>
|
|
2096
|
+
<value>baseline</value>
|
|
2097
|
+
<value>axis</value>
|
|
2098
|
+
</choice>
|
|
2099
|
+
</attribute>
|
|
2100
|
+
</optional>
|
|
2101
|
+
<optional>
|
|
2102
|
+
<attribute name="columnalign">
|
|
2103
|
+
<ref name="columnalignstyle"/>
|
|
2104
|
+
</attribute>
|
|
2105
|
+
</optional>
|
|
2106
|
+
<optional>
|
|
2107
|
+
<attribute name="groupalign">
|
|
2108
|
+
<ref name="group-alignment-list"/>
|
|
2109
|
+
</attribute>
|
|
2110
|
+
</optional>
|
|
2111
|
+
</define>
|
|
2112
|
+
<define name="mstack">
|
|
2113
|
+
<element name="mstack">
|
|
2114
|
+
<ref name="mstack.attributes"/>
|
|
2115
|
+
<zeroOrMore>
|
|
2116
|
+
<ref name="MstackExpression"/>
|
|
2117
|
+
</zeroOrMore>
|
|
2118
|
+
</element>
|
|
2119
|
+
</define>
|
|
2120
|
+
<define name="mstack.attributes">
|
|
2121
|
+
<ref name="CommonAtt"/>
|
|
2122
|
+
<ref name="CommonPresAtt"/>
|
|
2123
|
+
<optional>
|
|
2124
|
+
<attribute name="align">
|
|
2125
|
+
<data type="string">
|
|
2126
|
+
<param name="pattern">\s*(top|bottom|center|baseline|axis)(\s+-?[0-9]+)?\s*</param>
|
|
2127
|
+
</data>
|
|
2128
|
+
</attribute>
|
|
2129
|
+
</optional>
|
|
2130
|
+
<optional>
|
|
2131
|
+
<attribute name="stackalign">
|
|
2132
|
+
<choice>
|
|
2133
|
+
<value>left</value>
|
|
2134
|
+
<value>center</value>
|
|
2135
|
+
<value>right</value>
|
|
2136
|
+
<value>decimalpoint</value>
|
|
2137
|
+
</choice>
|
|
2138
|
+
</attribute>
|
|
2139
|
+
</optional>
|
|
2140
|
+
<optional>
|
|
2141
|
+
<attribute name="charalign">
|
|
2142
|
+
<choice>
|
|
2143
|
+
<value>left</value>
|
|
2144
|
+
<value>center</value>
|
|
2145
|
+
<value>right</value>
|
|
2146
|
+
</choice>
|
|
2147
|
+
</attribute>
|
|
2148
|
+
</optional>
|
|
2149
|
+
<optional>
|
|
2150
|
+
<attribute name="charspacing">
|
|
2151
|
+
<choice>
|
|
2152
|
+
<ref name="length"/>
|
|
2153
|
+
<value>loose</value>
|
|
2154
|
+
<value>medium</value>
|
|
2155
|
+
<value>tight</value>
|
|
2156
|
+
</choice>
|
|
2157
|
+
</attribute>
|
|
2158
|
+
</optional>
|
|
2159
|
+
</define>
|
|
2160
|
+
<define name="mlongdiv">
|
|
2161
|
+
<element name="mlongdiv">
|
|
2162
|
+
<ref name="mlongdiv.attributes"/>
|
|
2163
|
+
<ref name="MstackExpression"/>
|
|
2164
|
+
<ref name="MstackExpression"/>
|
|
2165
|
+
<oneOrMore>
|
|
2166
|
+
<ref name="MstackExpression"/>
|
|
2167
|
+
</oneOrMore>
|
|
2168
|
+
</element>
|
|
2169
|
+
</define>
|
|
2170
|
+
<define name="mlongdiv.attributes">
|
|
2171
|
+
<ref name="msgroup.attributes"/>
|
|
2172
|
+
<optional>
|
|
2173
|
+
<attribute name="longdivstyle">
|
|
2174
|
+
<choice>
|
|
2175
|
+
<value>lefttop</value>
|
|
2176
|
+
<value>stackedrightright</value>
|
|
2177
|
+
<value>mediumstackedrightright</value>
|
|
2178
|
+
<value>shortstackedrightright</value>
|
|
2179
|
+
<value>righttop</value>
|
|
2180
|
+
<value>left/\right</value>
|
|
2181
|
+
<value>left)(right</value>
|
|
2182
|
+
<value>:right=right</value>
|
|
2183
|
+
<value>stackedleftleft</value>
|
|
2184
|
+
<value>stackedleftlinetop</value>
|
|
2185
|
+
</choice>
|
|
2186
|
+
</attribute>
|
|
2187
|
+
</optional>
|
|
2188
|
+
</define>
|
|
2189
|
+
<define name="msgroup">
|
|
2190
|
+
<element name="msgroup">
|
|
2191
|
+
<ref name="msgroup.attributes"/>
|
|
2192
|
+
<zeroOrMore>
|
|
2193
|
+
<ref name="MstackExpression"/>
|
|
2194
|
+
</zeroOrMore>
|
|
2195
|
+
</element>
|
|
2196
|
+
</define>
|
|
2197
|
+
<define name="msgroup.attributes">
|
|
2198
|
+
<ref name="CommonAtt"/>
|
|
2199
|
+
<ref name="CommonPresAtt"/>
|
|
2200
|
+
<optional>
|
|
2201
|
+
<attribute name="position">
|
|
2202
|
+
<ref name="integer"/>
|
|
2203
|
+
</attribute>
|
|
2204
|
+
</optional>
|
|
2205
|
+
<optional>
|
|
2206
|
+
<attribute name="shift">
|
|
2207
|
+
<ref name="integer"/>
|
|
2208
|
+
</attribute>
|
|
2209
|
+
</optional>
|
|
2210
|
+
</define>
|
|
2211
|
+
<define name="msrow">
|
|
2212
|
+
<element name="msrow">
|
|
2213
|
+
<ref name="msrow.attributes"/>
|
|
2214
|
+
<zeroOrMore>
|
|
2215
|
+
<ref name="MsrowExpression"/>
|
|
2216
|
+
</zeroOrMore>
|
|
2217
|
+
</element>
|
|
2218
|
+
</define>
|
|
2219
|
+
<define name="msrow.attributes">
|
|
2220
|
+
<ref name="CommonAtt"/>
|
|
2221
|
+
<ref name="CommonPresAtt"/>
|
|
2222
|
+
<optional>
|
|
2223
|
+
<attribute name="position">
|
|
2224
|
+
<ref name="integer"/>
|
|
2225
|
+
</attribute>
|
|
2226
|
+
</optional>
|
|
2227
|
+
</define>
|
|
2228
|
+
<define name="mscarries">
|
|
2229
|
+
<element name="mscarries">
|
|
2230
|
+
<ref name="mscarries.attributes"/>
|
|
2231
|
+
<zeroOrMore>
|
|
2232
|
+
<choice>
|
|
2233
|
+
<ref name="MsrowExpression"/>
|
|
2234
|
+
<ref name="mscarry"/>
|
|
2235
|
+
</choice>
|
|
2236
|
+
</zeroOrMore>
|
|
2237
|
+
</element>
|
|
2238
|
+
</define>
|
|
2239
|
+
<define name="mscarries.attributes">
|
|
2240
|
+
<ref name="CommonAtt"/>
|
|
2241
|
+
<ref name="CommonPresAtt"/>
|
|
2242
|
+
<optional>
|
|
2243
|
+
<attribute name="position">
|
|
2244
|
+
<ref name="integer"/>
|
|
2245
|
+
</attribute>
|
|
2246
|
+
</optional>
|
|
2247
|
+
<optional>
|
|
2248
|
+
<attribute name="location">
|
|
2249
|
+
<choice>
|
|
2250
|
+
<value>w</value>
|
|
2251
|
+
<value>nw</value>
|
|
2252
|
+
<value>n</value>
|
|
2253
|
+
<value>ne</value>
|
|
2254
|
+
<value>e</value>
|
|
2255
|
+
<value>se</value>
|
|
2256
|
+
<value>s</value>
|
|
2257
|
+
<value>sw</value>
|
|
2258
|
+
</choice>
|
|
2259
|
+
</attribute>
|
|
2260
|
+
</optional>
|
|
2261
|
+
<optional>
|
|
2262
|
+
<attribute name="crossout">
|
|
2263
|
+
<list>
|
|
2264
|
+
<zeroOrMore>
|
|
2265
|
+
<choice>
|
|
2266
|
+
<value>none</value>
|
|
2267
|
+
<value>updiagonalstrike</value>
|
|
2268
|
+
<value>downdiagonalstrike</value>
|
|
2269
|
+
<value>verticalstrike</value>
|
|
2270
|
+
<value>horizontalstrike</value>
|
|
2271
|
+
</choice>
|
|
2272
|
+
</zeroOrMore>
|
|
2273
|
+
</list>
|
|
2274
|
+
</attribute>
|
|
2275
|
+
</optional>
|
|
2276
|
+
<optional>
|
|
2277
|
+
<attribute name="scriptsizemultiplier">
|
|
2278
|
+
<ref name="number"/>
|
|
2279
|
+
</attribute>
|
|
2280
|
+
</optional>
|
|
2281
|
+
</define>
|
|
2282
|
+
<define name="mscarry">
|
|
2283
|
+
<element name="mscarry">
|
|
2284
|
+
<ref name="mscarry.attributes"/>
|
|
2285
|
+
<zeroOrMore>
|
|
2286
|
+
<ref name="MsrowExpression"/>
|
|
2287
|
+
</zeroOrMore>
|
|
2288
|
+
</element>
|
|
2289
|
+
</define>
|
|
2290
|
+
<define name="mscarry.attributes">
|
|
2291
|
+
<ref name="CommonAtt"/>
|
|
2292
|
+
<ref name="CommonPresAtt"/>
|
|
2293
|
+
<optional>
|
|
2294
|
+
<attribute name="location">
|
|
2295
|
+
<choice>
|
|
2296
|
+
<value>w</value>
|
|
2297
|
+
<value>nw</value>
|
|
2298
|
+
<value>n</value>
|
|
2299
|
+
<value>ne</value>
|
|
2300
|
+
<value>e</value>
|
|
2301
|
+
<value>se</value>
|
|
2302
|
+
<value>s</value>
|
|
2303
|
+
<value>sw</value>
|
|
2304
|
+
</choice>
|
|
2305
|
+
</attribute>
|
|
2306
|
+
</optional>
|
|
2307
|
+
<optional>
|
|
2308
|
+
<attribute name="crossout">
|
|
2309
|
+
<list>
|
|
2310
|
+
<zeroOrMore>
|
|
2311
|
+
<choice>
|
|
2312
|
+
<value>none</value>
|
|
2313
|
+
<value>updiagonalstrike</value>
|
|
2314
|
+
<value>downdiagonalstrike</value>
|
|
2315
|
+
<value>verticalstrike</value>
|
|
2316
|
+
<value>horizontalstrike</value>
|
|
2317
|
+
</choice>
|
|
2318
|
+
</zeroOrMore>
|
|
2319
|
+
</list>
|
|
2320
|
+
</attribute>
|
|
2321
|
+
</optional>
|
|
2322
|
+
</define>
|
|
2323
|
+
<define name="maction">
|
|
2324
|
+
<element name="maction">
|
|
2325
|
+
<ref name="maction.attributes"/>
|
|
2326
|
+
<oneOrMore>
|
|
2327
|
+
<ref name="MathExpression"/>
|
|
2328
|
+
</oneOrMore>
|
|
2329
|
+
</element>
|
|
2330
|
+
</define>
|
|
2331
|
+
<define name="maction.attributes">
|
|
2332
|
+
<ref name="CommonAtt"/>
|
|
2333
|
+
<ref name="CommonPresAtt"/>
|
|
2334
|
+
<attribute name="actiontype"/>
|
|
2335
|
+
<optional>
|
|
2336
|
+
<attribute name="selection">
|
|
2337
|
+
<ref name="positive-integer"/>
|
|
2338
|
+
</attribute>
|
|
2339
|
+
</optional>
|
|
2340
|
+
</define>
|
|
2341
|
+
</grammar>
|