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

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/presentation/style.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 for the "mstyle" element of MathML.
 
13
  Author: St&#233;phane Dalmas, INRIA.
 
14
  </xs:documentation>
 
15
</xs:annotation>
 
16
 
 
17
<!-- "mstyle" -->
 
18
 
 
19
<xs:attributeGroup name="mstyle.attlist">
 
20
  <xs:attribute name="scriptlevel" type="xs:integer"/>
 
21
  <xs:attribute name="displaystyle" type="xs:boolean"/>
 
22
  <xs:attribute name="scriptsizemultiplier" type="xs:decimal" default="0.71"/>
 
23
  <xs:attribute name="scriptminsize" type="length-with-unit" default="8pt"/>
 
24
  <xs:attribute name="color" type="xs:string"/>
 
25
  <xs:attribute name="background" type="xs:string" default="transparent"/>
 
26
  <xs:attribute name="veryverythinmathspace" type="length-with-unit"
 
27
                default="0.0555556em"/>
 
28
  <xs:attribute name="verythinmathspace" type="length-with-unit"
 
29
                default="0.111111em"/>
 
30
  <xs:attribute name="thinmathspace" type="length-with-unit"
 
31
                default="0.166667em"/>
 
32
  <xs:attribute name="mediummathspace" type="length-with-unit"
 
33
                default="0.222222em"/>
 
34
  <xs:attribute name="thickmathspace" type="length-with-unit"
 
35
                default="0.277778em"/>
 
36
  <xs:attribute name="verythickmathspace" type="length-with-unit"
 
37
                default="0.333333em"/>
 
38
  <xs:attribute name="veryverythickmathspace" type="length-with-unit"
 
39
                default="0.388889em"/>
 
40
  <xs:attribute name="linethickness" default="1">
 
41
    <xs:simpleType>
 
42
      <xs:union memberTypes="length-with-optional-unit thickness"/>
 
43
    </xs:simpleType> 
 
44
  </xs:attribute>
 
45
  <xs:attributeGroup ref="Operator.attrib"/>
 
46
  <xs:attributeGroup ref="Token-style.attrib"/>
 
47
  <xs:attributeGroup ref="Common.attrib"/>
 
48
</xs:attributeGroup>
 
49
 
 
50
<xs:group name="mstyle.content">
 
51
  <xs:sequence>
 
52
    <xs:group ref="Presentation-expr.class"/>
 
53
  </xs:sequence>
 
54
</xs:group>
 
55
 
 
56
<xs:complexType name="mstyle.type">
 
57
  <xs:group ref="mstyle.content" minOccurs="1" maxOccurs="unbounded"/>
 
58
  <xs:attributeGroup ref="mstyle.attlist"/>
 
59
</xs:complexType>
 
60
 
 
61
<xs:element name="mstyle" type="mstyle.type"/>
 
62
 
 
63
</xs:schema>
 
64
<!--
 
65
  Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
 
66
  of Technology, Institut National de Recherche en Informatique et en
 
67
  Automatique, Keio University). All Rights Reserved. See
 
68
  http://www.w3.org/Consortium/Legal/.
 
69
  -->