Bump version to 21.06.18.1
[LibreOffice.git] / schema / mathml2 / presentation / space.xsd
blob243735385d762eec99db8421bc359aa704d39dc8
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 the XML Schema module for the MathML "mspace" element.
13 Author: St&#233;phane Dalmas, INRIA.
14 </xs:documentation>
15 </xs:annotation>
17 <xs:attributeGroup name="mspace.attlist">
18 <xs:attribute name="width" default="0em">
19 <xs:simpleType>
20 <xs:union memberTypes="length-with-unit named-space"/>
21 </xs:simpleType>
22 </xs:attribute>
23 <xs:attribute name="height" type="length-with-unit" default="0ex"/>
24 <xs:attribute name="depth" type="length-with-unit" default="0ex"/>
25 <xs:attribute name="linebreak" default="auto">
26 <xs:simpleType>
27 <xs:restriction base="xs:string">
28 <xs:enumeration value="auto"/>
29 <xs:enumeration value="newline"/>
30 <xs:enumeration value="indentingnewline"/>
31 <xs:enumeration value="nobreak"/>
32 <xs:enumeration value="goodbreak"/>
33 <xs:enumeration value="badbreak"/>
34 </xs:restriction>
35 </xs:simpleType>
36 </xs:attribute>
37 <xs:attributeGroup ref="Common.attrib"/>
38 </xs:attributeGroup>
40 <xs:complexType name="mspace.type">
41 <xs:attributeGroup ref="mspace.attlist"/>
42 </xs:complexType>
44 <xs:element name="mspace" type="mspace.type"/>
46 </xs:schema>
47 <!--
48 Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
49 of Technology, Institut National de Recherche en Informatique et en
50 Automatique, Keio University). All Rights Reserved. See
51 http://www.w3.org/Consortium/Legal/.
52 -->