Bump version to 24.04.3.4
[LibreOffice.git] / schema / mathml2 / content / arith.xsd
blobfdb508f7e4c3c8992236559eef135982e4cf9a40
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 "arithmetic" operators of content
13 MathML.
14 Author: St&#233;phane Dalmas, INRIA.
15 </xs:documentation>
16 </xs:annotation>
18 <!-- a common type for all this -->
20 <xs:complexType name="Arith.type">
21 <xs:attributeGroup ref="Definition.attrib"/>
22 <xs:attributeGroup ref="Common.attrib"/>
23 </xs:complexType>
25 <!-- The elements -->
27 <xs:element name="abs" type="Arith.type"/>
28 <xs:element name="conjugate" type="Arith.type"/>
29 <xs:element name="arg" type="Arith.type"/>
30 <xs:element name="real" type="Arith.type"/>
31 <xs:element name="imaginary" type="Arith.type"/>
33 <xs:element name="floor" type="Arith.type"/>
34 <xs:element name="ceiling" type="Arith.type"/>
36 <xs:element name="power" type="Arith.type"/>
37 <xs:element name="root" type="Arith.type"/>
39 <xs:element name="minus" type="Arith.type"/>
40 <xs:element name="plus" type="Arith.type"/>
41 <xs:element name="sum" type="Arith.type"/>
42 <xs:element name="times" type="Arith.type"/>
43 <xs:element name="product" type="Arith.type"/>
45 <xs:element name="max" type="Arith.type"/>
46 <xs:element name="min" type="Arith.type"/>
48 <xs:element name="factorial" type="Arith.type"/>
49 <xs:element name="quotient" type="Arith.type"/>
50 <xs:element name="divide" type="Arith.type"/>
51 <xs:element name="rem" type="Arith.type"/>
52 <xs:element name="gcd" type="Arith.type"/>
53 <xs:element name="lcm" type="Arith.type"/>
55 <!-- And the group of everything -->
57 <xs:group name="Content-arith.class">
58 <xs:choice>
59 <xs:element ref="abs"/>
60 <xs:element ref="conjugate"/>
61 <xs:element ref="factorial"/>
62 <xs:element ref="arg"/>
63 <xs:element ref="real"/>
64 <xs:element ref="imaginary"/>
65 <xs:element ref="floor"/>
66 <xs:element ref="ceiling"/>
67 <xs:element ref="quotient"/>
68 <xs:element ref="divide"/>
69 <xs:element ref="rem"/>
70 <xs:element ref="minus"/>
71 <xs:element ref="plus"/>
72 <xs:element ref="times"/>
73 <xs:element ref="power"/>
74 <xs:element ref="root"/>
75 <xs:element ref="max"/>
76 <xs:element ref="min"/>
77 <xs:element ref="gcd"/>
78 <xs:element ref="lcm"/>
79 <xs:element ref="sum"/>
80 <xs:element ref="product"/>
81 </xs:choice>
82 </xs:group>
84 </xs:schema>
85 <!--
86 Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
87 of Technology, Institut National de Recherche en Informatique et en
88 Automatique, Keio University). All Rights Reserved. See
89 http://www.w3.org/Consortium/Legal/.
90 -->