blob: 32b4d3f78cdd7be64ffe114365d2117b722655d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.w3.org/1998/Math/MathML"
targetNamespace="http://www.w3.org/1998/Math/MathML"
elementFormDefault="qualified"
>
<xs:annotation>
<xs:documentation>
This is the XML Schema module for the MathML "mglyph" element.
Author: Stéphane Dalmas, INRIA.
</xs:documentation>
</xs:annotation>
<xs:attributeGroup name="mglyph.attlist">
<xs:attribute name="alt" type="xs:string"/>
<xs:attribute name="fontfamily" type="xs:string"/>
<xs:attribute name="index" type="xs:positiveInteger"/>
</xs:attributeGroup>
<xs:complexType name="mglyph.type">
<xs:attributeGroup ref="mglyph.attlist"/>
</xs:complexType>
<xs:element name="mglyph" type="mglyph.type"/>
</xs:schema>
<!--
Copyright û 2002 World Wide Web Consortium, (Massachusetts Institute
of Technology, Institut National de Recherche en Informatique et en
Automatique, Keio University). All Rights Reserved. See
http://www.w3.org/Consortium/Legal/.
-->
|