blob: 12b0f85fd912bd22d9c2dd6002f0496279ffddbf (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?xml version="1.0" encoding="UTF-8"?>
<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 the vector calculus operators of content
MathML.
Author: Stéphane Dalmas, INRIA.
</xs:documentation>
</xs:annotation>
<!-- "divergence" -->
<xs:attributeGroup name="divergence.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="divergence.type">
<xs:attributeGroup ref="divergence.attlist"/>
</xs:complexType>
<xs:element name="divergence" type="divergence.type"/>
<!-- "grad" -->
<xs:attributeGroup name="grad.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="grad.type">
<xs:attributeGroup ref="grad.attlist"/>
</xs:complexType>
<xs:element name="grad" type="grad.type"/>
<!-- "curl" -->
<xs:attributeGroup name="curl.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="curl.type">
<xs:attributeGroup ref="curl.attlist"/>
</xs:complexType>
<xs:element name="curl" type="curl.type"/>
<!-- "laplacian" -->
<xs:attributeGroup name="laplacian.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="laplacian.type">
<xs:attributeGroup ref="laplacian.attlist"/>
</xs:complexType>
<xs:element name="laplacian" type="laplacian.type"/>
<!-- And the group of everything -->
<xs:group name="Content-vector-calculus.class">
<xs:choice>
<xs:element ref="divergence"/>
<xs:element ref="grad"/>
<xs:element ref="curl"/>
<xs:element ref="laplacian"/>
</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/.
-->
|