tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / schema / mathml2 / content / linear-algebra.xsd
blobeb62bcb6f218b7ce5c65221901bf840feb2f8f67
1 <?xml version="1.0" encoding="UTF-8"?>
3 <xs:schema
4 xmlns:xs="http://www.w3.org/2001/XMLSchema"
5 xmlns="http://www.w3.org/1998/Math/MathML"
6 targetNamespace="http://www.w3.org/1998/Math/MathML"
7 elementFormDefault="qualified"
10 <xs:annotation>
11 <xs:documentation>
12 This is an XML Schema module for the linear algebra part of content MathML.
13 Author: St&#233;phane Dalmas, INRIA.
14 </xs:documentation>
15 </xs:annotation>
17 <!-- "vector" -->
19 <xs:attributeGroup name="vector.attlist">
20 <xs:attributeGroup ref="Common.attrib"/>
21 </xs:attributeGroup>
23 <xs:group name="vector.content">
24 <xs:sequence>
25 <xs:group ref="Content-expr.class"/>
26 </xs:sequence>
27 </xs:group>
29 <xs:complexType name="vector.type">
30 <xs:group ref="vector.content" minOccurs="1" maxOccurs="unbounded"/>
31 <xs:attributeGroup ref="vector.attlist"/>
32 </xs:complexType>
34 <xs:element name="vector" type="vector.type"/>
36 <!-- "matrix" -->
38 <xs:attributeGroup name="matrix.attlist">
39 <xs:attributeGroup ref="Common.attrib"/>
40 </xs:attributeGroup>
42 <xs:group name="matrix.content">
43 <xs:sequence>
44 <xs:element ref="matrixrow"/>
45 </xs:sequence>
46 </xs:group>
48 <xs:complexType name="matrix.type">
49 <xs:group ref="matrix.content" minOccurs="1" maxOccurs="unbounded"/>
50 <xs:attributeGroup ref="matrix.attlist"/>
51 </xs:complexType>
53 <xs:element name="matrix" type="matrix.type"/>
55 <!-- "matrixrow" -->
57 <xs:attributeGroup name="matrixrow.attlist">
58 <xs:attributeGroup ref="Common.attrib"/>
59 </xs:attributeGroup>
61 <xs:group name="matrixrow.content">
62 <xs:sequence>
63 <xs:group ref="Content-expr.class"/>
64 </xs:sequence>
65 </xs:group>
67 <xs:complexType name="matrixrow.type">
68 <xs:group ref="matrixrow.content" minOccurs="1" maxOccurs="unbounded"/>
69 <xs:attributeGroup ref="matrixrow.attlist"/>
70 </xs:complexType>
72 <xs:element name="matrixrow" type="matrixrow.type"/>
74 <!-- "determinant" -->
76 <xs:attributeGroup name="determinant.attlist">
77 <xs:attributeGroup ref="Definition.attrib"/>
78 <xs:attributeGroup ref="Common.attrib"/>
79 </xs:attributeGroup>
81 <xs:complexType name="determinant.type">
82 <xs:attributeGroup ref="determinant.attlist"/>
83 </xs:complexType>
85 <xs:element name="determinant" type="determinant.type"/>
87 <!-- "transpose" -->
89 <xs:attributeGroup name="transpose.attlist">
90 <xs:attributeGroup ref="Definition.attrib"/>
91 <xs:attributeGroup ref="Common.attrib"/>
92 </xs:attributeGroup>
94 <xs:complexType name="transpose.type">
95 <xs:attributeGroup ref="transpose.attlist"/>
96 </xs:complexType>
98 <xs:element name="transpose" type="transpose.type"/>
100 <!-- "selector" -->
102 <xs:attributeGroup name="selector.attlist">
103 <xs:attributeGroup ref="Definition.attrib"/>
104 <xs:attributeGroup ref="Common.attrib"/>
105 </xs:attributeGroup>
107 <xs:complexType name="selector.type">
108 <xs:attributeGroup ref="selector.attlist"/>
109 </xs:complexType>
111 <xs:element name="selector" type="selector.type"/>
113 <!-- "vectorproduct" -->
115 <xs:attributeGroup name="vectorproduct.attlist">
116 <xs:attributeGroup ref="Definition.attrib"/>
117 <xs:attributeGroup ref="Common.attrib"/>
118 </xs:attributeGroup>
120 <xs:complexType name="vectorproduct.type">
121 <xs:attributeGroup ref="vectorproduct.attlist"/>
122 </xs:complexType>
124 <xs:element name="vectorproduct" type="vectorproduct.type"/>
126 <!-- "scalarproduct" -->
128 <xs:attributeGroup name="scalarproduct.attlist">
129 <xs:attributeGroup ref="Definition.attrib"/>
130 <xs:attributeGroup ref="Common.attrib"/>
131 </xs:attributeGroup>
133 <xs:complexType name="scalarproduct.type">
134 <xs:attributeGroup ref="scalarproduct.attlist"/>
135 </xs:complexType>
137 <xs:element name="scalarproduct" type="scalarproduct.type"/>
139 <!-- "outerproduct" -->
141 <xs:attributeGroup name="outerproduct.attlist">
142 <xs:attributeGroup ref="Definition.attrib"/>
143 <xs:attributeGroup ref="Common.attrib"/>
144 </xs:attributeGroup>
146 <xs:complexType name="outerproduct.type">
147 <xs:attributeGroup ref="outerproduct.attlist"/>
148 </xs:complexType>
150 <xs:element name="outerproduct" type="outerproduct.type"/>
152 <!-- And the group of everything -->
154 <xs:group name="Content-linear-algebra.class">
155 <xs:choice>
156 <xs:element ref="vector"/>
157 <xs:element ref="matrix"/>
158 <xs:element ref="determinant"/>
159 <xs:element ref="transpose"/>
160 <xs:element ref="selector"/>
161 <xs:element ref="vectorproduct"/>
162 <xs:element ref="scalarproduct"/>
163 <xs:element ref="outerproduct"/>
164 </xs:choice>
165 </xs:group>
166 </xs:schema>
168 <!--
169 Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
170 of Technology, Institut National de Recherche en Informatique et en
171 Automatique, Keio University). All Rights Reserved. See
172 http://www.w3.org/Consortium/Legal/.