summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng81
1 files changed, 81 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng
new file mode 100644
index 00000000000..e3207ed6c92
--- /dev/null
+++ b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<grammar xml:lang="en" ns="http://www.w3.org/2000/svg" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
+ <a:documentation>
+ SVG 1.1 Cursor Module
+ file: svg-cursor.rng
+
+ This is SVG, a language for describing two-dimensional graphics in XML.
+ Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
+
+ $Id: svg-cursor.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
+ </a:documentation>
+ <a:documentation>
+ Cursor
+
+ cursor
+
+ This module declares markup to provide support for cursor.
+ </a:documentation>
+ <a:documentation>
+ Datatypes
+ </a:documentation>
+ <define name="CursorValue.datatype">
+ <data type="string"/>
+ </define>
+ <a:documentation>
+ SVG.Cursor.attrib
+ </a:documentation>
+ <define name="SVG.Cursor.extra.attrib">
+ <empty/>
+ </define>
+ <define name="SVG.Cursor.attrib" combine="interleave">
+ <optional>
+ <attribute name="cursor">
+ <ref name="CursorValue.datatype"/>
+ </attribute>
+ </optional>
+ <ref name="SVG.Cursor.extra.attrib"/>
+ </define>
+ <a:documentation>
+ SVG.Cursor.class
+ </a:documentation>
+ <define name="SVG.Cursor.extra.class">
+ <notAllowed/>
+ </define>
+ <define name="SVG.Cursor.class" combine="choice">
+ <choice>
+ <ref name="cursor"/>
+ <ref name="SVG.Cursor.extra.class"/>
+ </choice>
+ </define>
+ <a:documentation>
+ cursor: Cursor Element
+ </a:documentation>
+ <define name="SVG.cursor.content">
+ <zeroOrMore>
+ <ref name="SVG.Description.class"/>
+ </zeroOrMore>
+ </define>
+ <define name="cursor">
+ <element name="cursor">
+ <ref name="attlist.cursor"/>
+ <ref name="SVG.cursor.content"/>
+ </element>
+ </define>
+ <define name="attlist.cursor" combine="interleave">
+ <ref name="SVG.Core.attrib"/>
+ <ref name="SVG.Conditional.attrib"/>
+ <ref name="SVG.XLinkRequired.attrib"/>
+ <ref name="SVG.External.attrib"/>
+ <optional>
+ <attribute name="x">
+ <ref name="Coordinate.datatype"/>
+ </attribute>
+ </optional>
+ <optional>
+ <attribute name="y">
+ <ref name="Coordinate.datatype"/>
+ </attribute>
+ </optional>
+ </define>
+</grammar>