~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/content/arith.xsd

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
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"
 
8
>
 
9
 
 
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>
 
17
 
 
18
<!-- a common type for all this -->
 
19
 
 
20
<xs:complexType name="Arith.type">
 
21
  <xs:attributeGroup ref="Definition.attrib"/>
 
22
  <xs:attributeGroup ref="Common.attrib"/>
 
23
</xs:complexType>
 
24
 
 
25
<!-- The elements -->
 
26
 
 
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"/>
 
32
 
 
33
<xs:element name="floor" type="Arith.type"/>
 
34
<xs:element name="ceiling" type="Arith.type"/>
 
35
 
 
36
<xs:element name="power" type="Arith.type"/>
 
37
<xs:element name="root" type="Arith.type"/>
 
38
 
 
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"/>
 
44
 
 
45
<xs:element name="max" type="Arith.type"/>
 
46
<xs:element name="min" type="Arith.type"/>
 
47
 
 
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"/>
 
54
 
 
55
<!-- And the group of everything -->
 
56
 
 
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>
 
83
 
 
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
  -->