blob: 11a5768dcc2a67a00fd564f3a16217d59601b4dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.w3.org/1998/Math/MathML"
targetNamespace="http://www.w3.org/1998/Math/MathML"
elementFormDefault="qualified"
>
<xs:annotation>
<xs:documentation>
This is an XML Schema module for operators dealing with functions in content
MathML.
Author: Stéphane Dalmas, INRIA.
</xs:documentation>
</xs:annotation>
<!-- a common type for all this -->
<xs:complexType name="Functions.type">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:complexType>
<!-- "compose" -->
<xs:element name="compose" type="Functions.type"/>
<!-- Domain, codomain and image -->
<xs:element name="domain" type="Functions.type"/>
<xs:element name="codomain" type="Functions.type"/>
<xs:element name="image" type="Functions.type"/>
<!-- "domainofapplication" -->
<xs:group name="domainofapplication.content">
<xs:sequence>
<xs:group ref="Content-expr.class"/>
</xs:sequence>
</xs:group>
<xs:complexType name="domainofapplication.type">
<xs:group ref="domainofapplication.content"/>
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:complexType>
<xs:element name="domainofapplication" type="domainofapplication.type"/>
<!-- identity -->
<xs:element name="ident" type="Functions.type"/>
<!-- And the group of everything -->
<xs:group name="Content-functions.class">
<xs:choice>
<xs:element ref="compose"/>
<xs:element ref="domain"/>
<xs:element ref="codomain"/>
<xs:element ref="image"/>
<xs:element ref="domainofapplication"/>
<xs:element ref="ident"/>
</xs:choice>
</xs:group>
</xs:schema>
<!--
Copyright û 2002 World Wide Web Consortium, (Massachusetts Institute
of Technology, Institut National de Recherche en Informatique et en
Automatique, Keio University). All Rights Reserved. See
http://www.w3.org/Consortium/Legal/.
-->
|