commonmeta-py 0.106__py3-none-any.whl → 0.108__py3-none-any.whl
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.
- commonmeta/__init__.py +12 -3
- commonmeta/api_utils.py +3 -2
- commonmeta/base_utils.py +186 -3
- commonmeta/cli.py +114 -34
- commonmeta/constants.py +20 -0
- commonmeta/file_utils.py +112 -0
- commonmeta/metadata.py +102 -42
- commonmeta/readers/codemeta_reader.py +1 -1
- commonmeta/readers/crossref_reader.py +23 -10
- commonmeta/readers/crossref_xml_reader.py +1 -1
- commonmeta/readers/datacite_reader.py +6 -4
- commonmeta/readers/{json_feed_reader.py → jsonfeed_reader.py} +12 -12
- commonmeta/resources/crossref/common5.4.0.xsd +1264 -0
- commonmeta/resources/crossref/{crossref5.3.1.xsd → crossref5.4.0.xsd} +286 -88
- commonmeta/resources/crossref/doi_resources5.4.0.xsd +117 -0
- commonmeta/resources/crossref/fundingdata5.4.0.xsd +59 -0
- commonmeta/resources/crossref/fundref.xsd +29 -19
- commonmeta/resources/crossref/languages5.4.0.xsd +8119 -0
- commonmeta/resources/crossref/mediatypes5.4.0.xsd +2207 -0
- commonmeta/resources/crossref/module-ali.xsd +14 -6
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-common.xsd +101 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-content.xsd +683 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-presentation.xsd +2092 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-strict-content.xsd +186 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3.xsd +9 -0
- commonmeta/resources/crossref/standard-modules/mathml3/module-ali.xsd +47 -0
- commonmeta/resources/crossref/standard-modules/module-ali.xsd +47 -0
- commonmeta/resources/crossref/standard-modules/xlink.xsd +100 -0
- commonmeta/resources/crossref/standard-modules/xml.xsd +287 -0
- commonmeta/resources/crossref/xml.xsd +287 -0
- commonmeta/schema_utils.py +25 -0
- commonmeta/utils.py +90 -15
- commonmeta/writers/bibtex_writer.py +5 -5
- commonmeta/writers/citation_writer.py +10 -5
- commonmeta/writers/commonmeta_writer.py +5 -17
- commonmeta/writers/crossref_xml_writer.py +1032 -4
- commonmeta/writers/csl_writer.py +6 -6
- commonmeta/writers/datacite_writer.py +11 -6
- commonmeta/writers/inveniordm_writer.py +286 -10
- commonmeta/writers/ris_writer.py +3 -3
- commonmeta/writers/schema_org_writer.py +10 -5
- {commonmeta_py-0.106.dist-info → commonmeta_py-0.108.dist-info}/METADATA +5 -2
- {commonmeta_py-0.106.dist-info → commonmeta_py-0.108.dist-info}/RECORD +46 -32
- commonmeta/crossref_utils.py +0 -583
- commonmeta/resources/crossref/common5.3.1.xsd +0 -1538
- {commonmeta_py-0.106.dist-info → commonmeta_py-0.108.dist-info}/WHEEL +0 -0
- {commonmeta_py-0.106.dist-info → commonmeta_py-0.108.dist-info}/entry_points.txt +0 -0
- {commonmeta_py-0.106.dist-info → commonmeta_py-0.108.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,683 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:m="http://www.w3.org/1998/Math/MathML"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
targetNamespace="http://www.w3.org/1998/Math/MathML">
|
6
|
+
<xs:include schemaLocation="mathml3-strict-content.xsd"/>
|
7
|
+
<xs:complexType name="cn.content" mixed="true">
|
8
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
9
|
+
<xs:element ref="m:mglyph"/>
|
10
|
+
<xs:element ref="m:sep"/>
|
11
|
+
<xs:element ref="m:PresentationExpression"/>
|
12
|
+
</xs:choice>
|
13
|
+
</xs:complexType>
|
14
|
+
<xs:attributeGroup name="cn.attributes">
|
15
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
16
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
17
|
+
<xs:attribute name="type"/>
|
18
|
+
<xs:attribute name="base"/>
|
19
|
+
</xs:attributeGroup>
|
20
|
+
<xs:attributeGroup name="ci.attributes">
|
21
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
22
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
23
|
+
<xs:attribute name="type"/>
|
24
|
+
</xs:attributeGroup>
|
25
|
+
<xs:attributeGroup name="ci.type">
|
26
|
+
<xs:attribute name="type" use="required"/>
|
27
|
+
</xs:attributeGroup>
|
28
|
+
<xs:complexType name="ci.content" mixed="true">
|
29
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
30
|
+
<xs:element ref="m:mglyph"/>
|
31
|
+
<xs:element ref="m:PresentationExpression"/>
|
32
|
+
</xs:choice>
|
33
|
+
</xs:complexType>
|
34
|
+
<xs:attributeGroup name="csymbol.attributes">
|
35
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
36
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
37
|
+
<xs:attribute name="type"/>
|
38
|
+
<xs:attribute name="cd" type="xs:NCName"/>
|
39
|
+
</xs:attributeGroup>
|
40
|
+
<xs:complexType name="csymbol.content" mixed="true">
|
41
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
42
|
+
<xs:element ref="m:mglyph"/>
|
43
|
+
<xs:element ref="m:PresentationExpression"/>
|
44
|
+
</xs:choice>
|
45
|
+
</xs:complexType>
|
46
|
+
<xs:element name="bvar">
|
47
|
+
<xs:complexType>
|
48
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
49
|
+
<xs:choice>
|
50
|
+
<xs:element ref="m:ci"/>
|
51
|
+
<xs:group ref="m:semantics-ci"/>
|
52
|
+
</xs:choice>
|
53
|
+
<xs:element ref="m:degree"/>
|
54
|
+
</xs:choice>
|
55
|
+
</xs:complexType>
|
56
|
+
</xs:element>
|
57
|
+
<xs:attributeGroup name="cbytes.attributes">
|
58
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
59
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
60
|
+
</xs:attributeGroup>
|
61
|
+
<xs:attributeGroup name="cs.attributes">
|
62
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
63
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
64
|
+
</xs:attributeGroup>
|
65
|
+
<!--Ambiguous content model altered (apply.content)-->
|
66
|
+
<xs:complexType name="apply.content">
|
67
|
+
<xs:sequence>
|
68
|
+
<xs:group ref="m:ContExp"/>
|
69
|
+
<xs:group ref="m:BvarQ"/>
|
70
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:Qualifier"/>
|
71
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
72
|
+
</xs:sequence>
|
73
|
+
</xs:complexType>
|
74
|
+
<xs:complexType name="bind.content">
|
75
|
+
<xs:complexContent>
|
76
|
+
<xs:extension base="m:apply.content"/>
|
77
|
+
</xs:complexContent>
|
78
|
+
</xs:complexType>
|
79
|
+
<xs:attributeGroup name="base">
|
80
|
+
<xs:attribute name="base" use="required"/>
|
81
|
+
</xs:attributeGroup>
|
82
|
+
<xs:element name="sep">
|
83
|
+
<xs:complexType/>
|
84
|
+
</xs:element>
|
85
|
+
<xs:element name="PresentationExpression" abstract="true"/>
|
86
|
+
<xs:group name="DomainQ">
|
87
|
+
<xs:sequence>
|
88
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
89
|
+
<xs:element ref="m:domainofapplication"/>
|
90
|
+
<xs:element ref="m:condition"/>
|
91
|
+
<!--Ambiguous content model altered (interval)--><xs:sequence>
|
92
|
+
<xs:element ref="m:lowlimit"/>
|
93
|
+
<xs:element minOccurs="0" ref="m:uplimit"/>
|
94
|
+
</xs:sequence>
|
95
|
+
</xs:choice>
|
96
|
+
</xs:sequence>
|
97
|
+
</xs:group>
|
98
|
+
<xs:element name="domainofapplication">
|
99
|
+
<xs:complexType>
|
100
|
+
<xs:group ref="m:ContExp"/>
|
101
|
+
</xs:complexType>
|
102
|
+
</xs:element>
|
103
|
+
<xs:element name="condition">
|
104
|
+
<xs:complexType>
|
105
|
+
<xs:group ref="m:ContExp"/>
|
106
|
+
</xs:complexType>
|
107
|
+
</xs:element>
|
108
|
+
<xs:element name="uplimit">
|
109
|
+
<xs:complexType>
|
110
|
+
<xs:group ref="m:ContExp"/>
|
111
|
+
</xs:complexType>
|
112
|
+
</xs:element>
|
113
|
+
<xs:element name="lowlimit">
|
114
|
+
<xs:complexType>
|
115
|
+
<xs:group ref="m:ContExp"/>
|
116
|
+
</xs:complexType>
|
117
|
+
</xs:element>
|
118
|
+
<xs:group name="Qualifier">
|
119
|
+
<xs:choice>
|
120
|
+
<xs:group ref="m:DomainQ"/>
|
121
|
+
<xs:element ref="m:degree"/>
|
122
|
+
<xs:element ref="m:momentabout"/>
|
123
|
+
<xs:element ref="m:logbase"/>
|
124
|
+
</xs:choice>
|
125
|
+
</xs:group>
|
126
|
+
<xs:element name="degree">
|
127
|
+
<xs:complexType>
|
128
|
+
<xs:group ref="m:ContExp"/>
|
129
|
+
</xs:complexType>
|
130
|
+
</xs:element>
|
131
|
+
<xs:element name="momentabout">
|
132
|
+
<xs:complexType>
|
133
|
+
<xs:group ref="m:ContExp"/>
|
134
|
+
</xs:complexType>
|
135
|
+
</xs:element>
|
136
|
+
<xs:element name="logbase">
|
137
|
+
<xs:complexType>
|
138
|
+
<xs:group ref="m:ContExp"/>
|
139
|
+
</xs:complexType>
|
140
|
+
</xs:element>
|
141
|
+
<xs:attributeGroup name="type">
|
142
|
+
<xs:attribute name="type" use="required"/>
|
143
|
+
</xs:attributeGroup>
|
144
|
+
<xs:attributeGroup name="order">
|
145
|
+
<xs:attribute name="order" use="required">
|
146
|
+
<xs:simpleType>
|
147
|
+
<xs:restriction base="xs:token">
|
148
|
+
<xs:enumeration value="numeric"/>
|
149
|
+
<xs:enumeration value="lexicographic"/>
|
150
|
+
</xs:restriction>
|
151
|
+
</xs:simpleType>
|
152
|
+
</xs:attribute>
|
153
|
+
</xs:attributeGroup>
|
154
|
+
<xs:attributeGroup name="closure">
|
155
|
+
<xs:attribute name="closure" use="required"/>
|
156
|
+
</xs:attributeGroup>
|
157
|
+
<xs:element name="piecewise">
|
158
|
+
<xs:complexType>
|
159
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
160
|
+
<xs:element ref="m:piece"/>
|
161
|
+
<xs:element ref="m:otherwise"/>
|
162
|
+
</xs:choice>
|
163
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
164
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
165
|
+
</xs:complexType>
|
166
|
+
</xs:element>
|
167
|
+
<xs:element name="piece">
|
168
|
+
<xs:complexType>
|
169
|
+
<xs:sequence>
|
170
|
+
<xs:group ref="m:ContExp"/>
|
171
|
+
<xs:group ref="m:ContExp"/>
|
172
|
+
</xs:sequence>
|
173
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
174
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
175
|
+
</xs:complexType>
|
176
|
+
</xs:element>
|
177
|
+
<xs:element name="otherwise">
|
178
|
+
<xs:complexType>
|
179
|
+
<xs:group ref="m:ContExp"/>
|
180
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
181
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
182
|
+
</xs:complexType>
|
183
|
+
</xs:element>
|
184
|
+
<xs:element name="DeprecatedContExp" abstract="true"/>
|
185
|
+
<xs:element name="reln" substitutionGroup="m:DeprecatedContExp">
|
186
|
+
<xs:complexType>
|
187
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
188
|
+
</xs:complexType>
|
189
|
+
</xs:element>
|
190
|
+
<xs:element name="fn" substitutionGroup="m:DeprecatedContExp">
|
191
|
+
<xs:complexType>
|
192
|
+
<xs:group ref="m:ContExp"/>
|
193
|
+
</xs:complexType>
|
194
|
+
</xs:element>
|
195
|
+
<xs:element name="declare" substitutionGroup="m:DeprecatedContExp">
|
196
|
+
<xs:complexType>
|
197
|
+
<xs:group maxOccurs="unbounded" ref="m:ContExp"/>
|
198
|
+
<xs:attribute name="type" type="xs:string"/>
|
199
|
+
<xs:attribute name="scope" type="xs:string"/>
|
200
|
+
<xs:attribute name="nargs" type="xs:nonNegativeInteger"/>
|
201
|
+
<xs:attribute name="occurrence">
|
202
|
+
<xs:simpleType>
|
203
|
+
<xs:restriction base="xs:token">
|
204
|
+
<xs:enumeration value="prefix"/>
|
205
|
+
<xs:enumeration value="infix"/>
|
206
|
+
<xs:enumeration value="function-model"/>
|
207
|
+
</xs:restriction>
|
208
|
+
</xs:simpleType>
|
209
|
+
</xs:attribute>
|
210
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
211
|
+
</xs:complexType>
|
212
|
+
</xs:element>
|
213
|
+
<xs:element name="interval.class" abstract="true">
|
214
|
+
<xs:complexType>
|
215
|
+
<xs:sequence>
|
216
|
+
<xs:group ref="m:ContExp"/>
|
217
|
+
<xs:group ref="m:ContExp"/>
|
218
|
+
</xs:sequence>
|
219
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
220
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
221
|
+
<xs:attribute name="closure"/>
|
222
|
+
</xs:complexType>
|
223
|
+
</xs:element>
|
224
|
+
<xs:element name="interval" substitutionGroup="m:interval.class"/>
|
225
|
+
<xs:element name="unary-functional.class" abstract="true">
|
226
|
+
<xs:complexType>
|
227
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
228
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
229
|
+
</xs:complexType>
|
230
|
+
</xs:element>
|
231
|
+
<xs:element name="inverse" substitutionGroup="m:unary-functional.class"/>
|
232
|
+
<xs:element name="ident" substitutionGroup="m:unary-functional.class"/>
|
233
|
+
<xs:element name="domain" substitutionGroup="m:unary-functional.class"/>
|
234
|
+
<xs:element name="codomain" substitutionGroup="m:unary-functional.class"/>
|
235
|
+
<xs:element name="image" substitutionGroup="m:unary-functional.class"/>
|
236
|
+
<xs:element name="ln" substitutionGroup="m:unary-functional.class"/>
|
237
|
+
<xs:element name="log" substitutionGroup="m:unary-functional.class"/>
|
238
|
+
<xs:element name="moment" substitutionGroup="m:unary-functional.class"/>
|
239
|
+
<xs:element name="lambda.class" abstract="true">
|
240
|
+
<xs:complexType>
|
241
|
+
<xs:sequence>
|
242
|
+
<xs:group ref="m:BvarQ"/>
|
243
|
+
<xs:group ref="m:DomainQ"/>
|
244
|
+
<xs:group ref="m:ContExp"/>
|
245
|
+
</xs:sequence>
|
246
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
247
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
248
|
+
</xs:complexType>
|
249
|
+
</xs:element>
|
250
|
+
<xs:element name="lambda" substitutionGroup="m:lambda.class"/>
|
251
|
+
<xs:element name="nary-functional.class" abstract="true">
|
252
|
+
<xs:complexType>
|
253
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
254
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
255
|
+
</xs:complexType>
|
256
|
+
</xs:element>
|
257
|
+
<xs:element name="compose" substitutionGroup="m:nary-functional.class"/>
|
258
|
+
<xs:group name="binary-arith.class">
|
259
|
+
<xs:choice>
|
260
|
+
<xs:element ref="m:quotient"/>
|
261
|
+
<xs:element ref="m:divide"/>
|
262
|
+
<xs:element ref="m:minus"/>
|
263
|
+
<xs:element ref="m:power"/>
|
264
|
+
<xs:element ref="m:rem"/>
|
265
|
+
<xs:element ref="m:root"/>
|
266
|
+
</xs:choice>
|
267
|
+
</xs:group>
|
268
|
+
<xs:element name="quotient">
|
269
|
+
<xs:complexType>
|
270
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
271
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
272
|
+
</xs:complexType>
|
273
|
+
</xs:element>
|
274
|
+
<xs:element name="divide">
|
275
|
+
<xs:complexType>
|
276
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
277
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
278
|
+
</xs:complexType>
|
279
|
+
</xs:element>
|
280
|
+
<xs:element name="minus">
|
281
|
+
<xs:complexType>
|
282
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
283
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
284
|
+
</xs:complexType>
|
285
|
+
</xs:element>
|
286
|
+
<xs:element name="power">
|
287
|
+
<xs:complexType>
|
288
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
289
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
290
|
+
</xs:complexType>
|
291
|
+
</xs:element>
|
292
|
+
<xs:element name="rem">
|
293
|
+
<xs:complexType>
|
294
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
295
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
296
|
+
</xs:complexType>
|
297
|
+
</xs:element>
|
298
|
+
<xs:element name="root">
|
299
|
+
<xs:complexType>
|
300
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
301
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
302
|
+
</xs:complexType>
|
303
|
+
</xs:element>
|
304
|
+
<xs:group name="unary-arith.class">
|
305
|
+
<xs:choice>
|
306
|
+
<xs:element ref="m:factorial"/>
|
307
|
+
<!--Ambiguous content model altered (minus)--><!--Ambiguous content model altered (root)--><xs:element ref="m:abs"/>
|
308
|
+
<xs:element ref="m:conjugate"/>
|
309
|
+
<xs:element ref="m:arg"/>
|
310
|
+
<xs:element ref="m:real"/>
|
311
|
+
<xs:element ref="m:imaginary"/>
|
312
|
+
<xs:element ref="m:floor"/>
|
313
|
+
<xs:element ref="m:ceiling"/>
|
314
|
+
<xs:element ref="m:exp"/>
|
315
|
+
</xs:choice>
|
316
|
+
</xs:group>
|
317
|
+
<xs:element name="factorial">
|
318
|
+
<xs:complexType>
|
319
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
320
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
321
|
+
</xs:complexType>
|
322
|
+
</xs:element>
|
323
|
+
<xs:element name="abs">
|
324
|
+
<xs:complexType>
|
325
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
326
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
327
|
+
</xs:complexType>
|
328
|
+
</xs:element>
|
329
|
+
<xs:element name="conjugate">
|
330
|
+
<xs:complexType>
|
331
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
332
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
333
|
+
</xs:complexType>
|
334
|
+
</xs:element>
|
335
|
+
<xs:element name="arg">
|
336
|
+
<xs:complexType>
|
337
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
338
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
339
|
+
</xs:complexType>
|
340
|
+
</xs:element>
|
341
|
+
<xs:element name="real">
|
342
|
+
<xs:complexType>
|
343
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
344
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
345
|
+
</xs:complexType>
|
346
|
+
</xs:element>
|
347
|
+
<xs:element name="imaginary">
|
348
|
+
<xs:complexType>
|
349
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
350
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
351
|
+
</xs:complexType>
|
352
|
+
</xs:element>
|
353
|
+
<xs:element name="floor">
|
354
|
+
<xs:complexType>
|
355
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
356
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
357
|
+
</xs:complexType>
|
358
|
+
</xs:element>
|
359
|
+
<xs:element name="ceiling">
|
360
|
+
<xs:complexType>
|
361
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
362
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
363
|
+
</xs:complexType>
|
364
|
+
</xs:element>
|
365
|
+
<xs:element name="exp">
|
366
|
+
<xs:complexType>
|
367
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
368
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
369
|
+
</xs:complexType>
|
370
|
+
</xs:element>
|
371
|
+
<xs:element name="nary-minmax.class" abstract="true">
|
372
|
+
<xs:complexType>
|
373
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
374
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
375
|
+
</xs:complexType>
|
376
|
+
</xs:element>
|
377
|
+
<xs:element name="max" substitutionGroup="m:nary-minmax.class"/>
|
378
|
+
<xs:element name="min" substitutionGroup="m:nary-minmax.class"/>
|
379
|
+
<xs:element name="nary-arith.class" abstract="true">
|
380
|
+
<xs:complexType>
|
381
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
382
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
383
|
+
</xs:complexType>
|
384
|
+
</xs:element>
|
385
|
+
<xs:element name="plus" substitutionGroup="m:nary-arith.class"/>
|
386
|
+
<xs:element name="times" substitutionGroup="m:nary-arith.class"/>
|
387
|
+
<xs:element name="gcd" substitutionGroup="m:nary-arith.class"/>
|
388
|
+
<xs:element name="lcm" substitutionGroup="m:nary-arith.class"/>
|
389
|
+
<xs:element name="nary-logical.class" abstract="true">
|
390
|
+
<xs:complexType>
|
391
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
392
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
393
|
+
</xs:complexType>
|
394
|
+
</xs:element>
|
395
|
+
<xs:element name="and" substitutionGroup="m:nary-logical.class"/>
|
396
|
+
<xs:element name="or" substitutionGroup="m:nary-logical.class"/>
|
397
|
+
<xs:element name="xor" substitutionGroup="m:nary-logical.class"/>
|
398
|
+
<xs:element name="unary-logical.class" abstract="true">
|
399
|
+
<xs:complexType>
|
400
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
401
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
402
|
+
</xs:complexType>
|
403
|
+
</xs:element>
|
404
|
+
<xs:element name="not" substitutionGroup="m:unary-logical.class"/>
|
405
|
+
<xs:element name="binary-logical.class" abstract="true">
|
406
|
+
<xs:complexType>
|
407
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
408
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
409
|
+
</xs:complexType>
|
410
|
+
</xs:element>
|
411
|
+
<xs:element name="implies" substitutionGroup="m:binary-logical.class"/>
|
412
|
+
<xs:element name="equivalent" substitutionGroup="m:binary-logical.class"/>
|
413
|
+
<xs:element name="quantifier.class" abstract="true">
|
414
|
+
<xs:complexType>
|
415
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
416
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
417
|
+
</xs:complexType>
|
418
|
+
</xs:element>
|
419
|
+
<xs:element name="forall" substitutionGroup="m:quantifier.class"/>
|
420
|
+
<xs:element name="exists" substitutionGroup="m:quantifier.class"/>
|
421
|
+
<xs:element name="nary-reln.class" abstract="true">
|
422
|
+
<xs:complexType>
|
423
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
424
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
425
|
+
</xs:complexType>
|
426
|
+
</xs:element>
|
427
|
+
<xs:element name="eq" substitutionGroup="m:nary-reln.class"/>
|
428
|
+
<xs:element name="gt" substitutionGroup="m:nary-reln.class"/>
|
429
|
+
<xs:element name="lt" substitutionGroup="m:nary-reln.class"/>
|
430
|
+
<xs:element name="geq" substitutionGroup="m:nary-reln.class"/>
|
431
|
+
<xs:element name="leq" substitutionGroup="m:nary-reln.class"/>
|
432
|
+
<xs:element name="binary-reln.class" abstract="true"/>
|
433
|
+
<xs:element name="neq" substitutionGroup="m:binary-reln.class">
|
434
|
+
<xs:complexType>
|
435
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
436
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
437
|
+
</xs:complexType>
|
438
|
+
</xs:element>
|
439
|
+
<xs:element name="approx" substitutionGroup="m:binary-reln.class">
|
440
|
+
<xs:complexType>
|
441
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
442
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
443
|
+
</xs:complexType>
|
444
|
+
</xs:element>
|
445
|
+
<xs:element name="factorof" substitutionGroup="m:binary-reln.class">
|
446
|
+
<xs:complexType>
|
447
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
448
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
449
|
+
</xs:complexType>
|
450
|
+
</xs:element>
|
451
|
+
<xs:element name="tendsto" substitutionGroup="m:binary-reln.class">
|
452
|
+
<xs:complexType>
|
453
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
454
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
455
|
+
<xs:attribute name="type"/>
|
456
|
+
</xs:complexType>
|
457
|
+
</xs:element>
|
458
|
+
<xs:element name="int.class" abstract="true">
|
459
|
+
<xs:complexType>
|
460
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
461
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
462
|
+
</xs:complexType>
|
463
|
+
</xs:element>
|
464
|
+
<xs:element name="int" substitutionGroup="m:int.class"/>
|
465
|
+
<xs:element name="Differential-Operator.class" abstract="true">
|
466
|
+
<xs:complexType>
|
467
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
468
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
469
|
+
</xs:complexType>
|
470
|
+
</xs:element>
|
471
|
+
<xs:element name="diff" substitutionGroup="m:Differential-Operator.class"/>
|
472
|
+
<xs:element name="partialdiff.class" abstract="true">
|
473
|
+
<xs:complexType>
|
474
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
475
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
476
|
+
</xs:complexType>
|
477
|
+
</xs:element>
|
478
|
+
<xs:element name="partialdiff" substitutionGroup="m:partialdiff.class"/>
|
479
|
+
<xs:element name="unary-veccalc.class" abstract="true">
|
480
|
+
<xs:complexType>
|
481
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
482
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
483
|
+
</xs:complexType>
|
484
|
+
</xs:element>
|
485
|
+
<xs:element name="divergence" substitutionGroup="m:unary-veccalc.class"/>
|
486
|
+
<xs:element name="grad" substitutionGroup="m:unary-veccalc.class"/>
|
487
|
+
<xs:element name="curl" substitutionGroup="m:unary-veccalc.class"/>
|
488
|
+
<xs:element name="laplacian" substitutionGroup="m:unary-veccalc.class"/>
|
489
|
+
<xs:element name="nary-setlist-constructor.class" abstract="true"/>
|
490
|
+
<xs:element name="set" substitutionGroup="m:nary-setlist-constructor.class">
|
491
|
+
<xs:complexType>
|
492
|
+
<xs:sequence>
|
493
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:BvarQ"/>
|
494
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:DomainQ"/>
|
495
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
496
|
+
</xs:sequence>
|
497
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
498
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
499
|
+
<xs:attribute name="type"/>
|
500
|
+
</xs:complexType>
|
501
|
+
</xs:element>
|
502
|
+
<xs:element name="list" substitutionGroup="m:nary-setlist-constructor.class">
|
503
|
+
<xs:complexType>
|
504
|
+
<xs:sequence>
|
505
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:BvarQ"/>
|
506
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:DomainQ"/>
|
507
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
508
|
+
</xs:sequence>
|
509
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
510
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
511
|
+
<xs:attribute name="order">
|
512
|
+
<xs:simpleType>
|
513
|
+
<xs:restriction base="xs:token">
|
514
|
+
<xs:enumeration value="numeric"/>
|
515
|
+
<xs:enumeration value="lexicographic"/>
|
516
|
+
</xs:restriction>
|
517
|
+
</xs:simpleType>
|
518
|
+
</xs:attribute>
|
519
|
+
</xs:complexType>
|
520
|
+
</xs:element>
|
521
|
+
<xs:element name="nary-set.class" abstract="true">
|
522
|
+
<xs:complexType>
|
523
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
524
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
525
|
+
</xs:complexType>
|
526
|
+
</xs:element>
|
527
|
+
<xs:element name="union" substitutionGroup="m:nary-set.class"/>
|
528
|
+
<xs:element name="intersect" substitutionGroup="m:nary-set.class"/>
|
529
|
+
<xs:element name="cartesianproduct" substitutionGroup="m:nary-set.class"/>
|
530
|
+
<xs:element name="binary-set.class" abstract="true">
|
531
|
+
<xs:complexType>
|
532
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
533
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
534
|
+
</xs:complexType>
|
535
|
+
</xs:element>
|
536
|
+
<xs:element name="in" substitutionGroup="m:binary-set.class"/>
|
537
|
+
<xs:element name="notin" substitutionGroup="m:binary-set.class"/>
|
538
|
+
<xs:element name="notsubset" substitutionGroup="m:binary-set.class"/>
|
539
|
+
<xs:element name="notprsubset" substitutionGroup="m:binary-set.class"/>
|
540
|
+
<xs:element name="setdiff" substitutionGroup="m:binary-set.class"/>
|
541
|
+
<xs:element name="nary-set-reln.class" abstract="true">
|
542
|
+
<xs:complexType>
|
543
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
544
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
545
|
+
</xs:complexType>
|
546
|
+
</xs:element>
|
547
|
+
<xs:element name="subset" substitutionGroup="m:nary-set-reln.class"/>
|
548
|
+
<xs:element name="prsubset" substitutionGroup="m:nary-set-reln.class"/>
|
549
|
+
<xs:element name="unary-set.class" abstract="true">
|
550
|
+
<xs:complexType>
|
551
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
552
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
553
|
+
</xs:complexType>
|
554
|
+
</xs:element>
|
555
|
+
<xs:element name="card" substitutionGroup="m:unary-set.class"/>
|
556
|
+
<xs:element name="sum.class" abstract="true">
|
557
|
+
<xs:complexType>
|
558
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
559
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
560
|
+
</xs:complexType>
|
561
|
+
</xs:element>
|
562
|
+
<xs:element name="sum" substitutionGroup="m:sum.class"/>
|
563
|
+
<xs:element name="product.class" abstract="true">
|
564
|
+
<xs:complexType>
|
565
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
566
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
567
|
+
</xs:complexType>
|
568
|
+
</xs:element>
|
569
|
+
<xs:element name="product" substitutionGroup="m:product.class"/>
|
570
|
+
<xs:element name="limit.class" abstract="true">
|
571
|
+
<xs:complexType>
|
572
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
573
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
574
|
+
</xs:complexType>
|
575
|
+
</xs:element>
|
576
|
+
<xs:element name="limit" substitutionGroup="m:limit.class"/>
|
577
|
+
<xs:element name="unary-elementary.class" abstract="true">
|
578
|
+
<xs:complexType>
|
579
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
580
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
581
|
+
</xs:complexType>
|
582
|
+
</xs:element>
|
583
|
+
<xs:element name="sin" substitutionGroup="m:unary-elementary.class"/>
|
584
|
+
<xs:element name="cos" substitutionGroup="m:unary-elementary.class"/>
|
585
|
+
<xs:element name="tan" substitutionGroup="m:unary-elementary.class"/>
|
586
|
+
<xs:element name="sec" substitutionGroup="m:unary-elementary.class"/>
|
587
|
+
<xs:element name="csc" substitutionGroup="m:unary-elementary.class"/>
|
588
|
+
<xs:element name="cot" substitutionGroup="m:unary-elementary.class"/>
|
589
|
+
<xs:element name="sinh" substitutionGroup="m:unary-elementary.class"/>
|
590
|
+
<xs:element name="cosh" substitutionGroup="m:unary-elementary.class"/>
|
591
|
+
<xs:element name="tanh" substitutionGroup="m:unary-elementary.class"/>
|
592
|
+
<xs:element name="sech" substitutionGroup="m:unary-elementary.class"/>
|
593
|
+
<xs:element name="csch" substitutionGroup="m:unary-elementary.class"/>
|
594
|
+
<xs:element name="coth" substitutionGroup="m:unary-elementary.class"/>
|
595
|
+
<xs:element name="arcsin" substitutionGroup="m:unary-elementary.class"/>
|
596
|
+
<xs:element name="arccos" substitutionGroup="m:unary-elementary.class"/>
|
597
|
+
<xs:element name="arctan" substitutionGroup="m:unary-elementary.class"/>
|
598
|
+
<xs:element name="arccosh" substitutionGroup="m:unary-elementary.class"/>
|
599
|
+
<xs:element name="arccot" substitutionGroup="m:unary-elementary.class"/>
|
600
|
+
<xs:element name="arccoth" substitutionGroup="m:unary-elementary.class"/>
|
601
|
+
<xs:element name="arccsc" substitutionGroup="m:unary-elementary.class"/>
|
602
|
+
<xs:element name="arccsch" substitutionGroup="m:unary-elementary.class"/>
|
603
|
+
<xs:element name="arcsec" substitutionGroup="m:unary-elementary.class"/>
|
604
|
+
<xs:element name="arcsech" substitutionGroup="m:unary-elementary.class"/>
|
605
|
+
<xs:element name="arcsinh" substitutionGroup="m:unary-elementary.class"/>
|
606
|
+
<xs:element name="arctanh" substitutionGroup="m:unary-elementary.class"/>
|
607
|
+
<xs:element name="nary-stats.class" abstract="true">
|
608
|
+
<xs:complexType>
|
609
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
610
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
611
|
+
</xs:complexType>
|
612
|
+
</xs:element>
|
613
|
+
<xs:element name="mean" substitutionGroup="m:nary-stats.class"/>
|
614
|
+
<xs:element name="sdev" substitutionGroup="m:nary-stats.class"/>
|
615
|
+
<xs:element name="variance" substitutionGroup="m:nary-stats.class"/>
|
616
|
+
<xs:element name="median" substitutionGroup="m:nary-stats.class"/>
|
617
|
+
<xs:element name="mode" substitutionGroup="m:nary-stats.class"/>
|
618
|
+
<xs:element name="nary-constructor.class" abstract="true">
|
619
|
+
<xs:complexType>
|
620
|
+
<xs:sequence>
|
621
|
+
<xs:group ref="m:BvarQ"/>
|
622
|
+
<xs:group ref="m:DomainQ"/>
|
623
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
624
|
+
</xs:sequence>
|
625
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
626
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
627
|
+
</xs:complexType>
|
628
|
+
</xs:element>
|
629
|
+
<xs:element name="vector" substitutionGroup="m:nary-constructor.class"/>
|
630
|
+
<xs:element name="matrix" substitutionGroup="m:nary-constructor.class"/>
|
631
|
+
<xs:element name="matrixrow" substitutionGroup="m:nary-constructor.class"/>
|
632
|
+
<xs:element name="unary-linalg.class" abstract="true">
|
633
|
+
<xs:complexType>
|
634
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
635
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
636
|
+
</xs:complexType>
|
637
|
+
</xs:element>
|
638
|
+
<xs:element name="determinant" substitutionGroup="m:unary-linalg.class"/>
|
639
|
+
<xs:element name="transpose" substitutionGroup="m:unary-linalg.class"/>
|
640
|
+
<xs:element name="nary-linalg.class" abstract="true">
|
641
|
+
<xs:complexType>
|
642
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
643
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
644
|
+
</xs:complexType>
|
645
|
+
</xs:element>
|
646
|
+
<xs:element name="selector" substitutionGroup="m:nary-linalg.class"/>
|
647
|
+
<xs:element name="binary-linalg.class" abstract="true">
|
648
|
+
<xs:complexType>
|
649
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
650
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
651
|
+
</xs:complexType>
|
652
|
+
</xs:element>
|
653
|
+
<xs:element name="vectorproduct" substitutionGroup="m:binary-linalg.class"/>
|
654
|
+
<xs:element name="scalarproduct" substitutionGroup="m:binary-linalg.class"/>
|
655
|
+
<xs:element name="outerproduct" substitutionGroup="m:binary-linalg.class"/>
|
656
|
+
<xs:element name="constant-set.class" abstract="true">
|
657
|
+
<xs:complexType>
|
658
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
659
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
660
|
+
</xs:complexType>
|
661
|
+
</xs:element>
|
662
|
+
<xs:element name="integers" substitutionGroup="m:constant-set.class"/>
|
663
|
+
<xs:element name="reals" substitutionGroup="m:constant-set.class"/>
|
664
|
+
<xs:element name="rationals" substitutionGroup="m:constant-set.class"/>
|
665
|
+
<xs:element name="naturalnumbers" substitutionGroup="m:constant-set.class"/>
|
666
|
+
<xs:element name="complexes" substitutionGroup="m:constant-set.class"/>
|
667
|
+
<xs:element name="primes" substitutionGroup="m:constant-set.class"/>
|
668
|
+
<xs:element name="emptyset" substitutionGroup="m:constant-set.class"/>
|
669
|
+
<xs:element name="constant-arith.class" abstract="true">
|
670
|
+
<xs:complexType>
|
671
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
672
|
+
<xs:attributeGroup ref="m:DefEncAtt"/>
|
673
|
+
</xs:complexType>
|
674
|
+
</xs:element>
|
675
|
+
<xs:element name="exponentiale" substitutionGroup="m:constant-arith.class"/>
|
676
|
+
<xs:element name="imaginaryi" substitutionGroup="m:constant-arith.class"/>
|
677
|
+
<xs:element name="notanumber" substitutionGroup="m:constant-arith.class"/>
|
678
|
+
<xs:element name="true" substitutionGroup="m:constant-arith.class"/>
|
679
|
+
<xs:element name="false" substitutionGroup="m:constant-arith.class"/>
|
680
|
+
<xs:element name="pi" substitutionGroup="m:constant-arith.class"/>
|
681
|
+
<xs:element name="eulergamma" substitutionGroup="m:constant-arith.class"/>
|
682
|
+
<xs:element name="infinity" substitutionGroup="m:constant-arith.class"/>
|
683
|
+
</xs:schema>
|