summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc49
1 files changed, 49 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc
new file mode 100644
index 00000000000..606e2e4e92d
--- /dev/null
+++ b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc
@@ -0,0 +1,49 @@
+namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
+
+
+##
+## SVG 1.1 Basic Graphics Attribute Module
+## file: svg-basic-graphics-attrib.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-basic-graphics-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
+##
+
+##
+## Basic Graphics Attribute
+##
+## display, visibility
+##
+## This module defines the Graphics attribute set.
+##
+[ xml:lang = "en" ]
+grammar {
+ SVG.display.attrib =
+ attribute display {
+ "inline"
+ | "block"
+ | "list-item"
+ | "run-in"
+ | "compact"
+ | "marker"
+ | "table"
+ | "inline-table"
+ | "table-row-group"
+ | "table-header-group"
+ | "table-footer-group"
+ | "table-row"
+ | "table-column-group"
+ | "table-column"
+ | "table-cell"
+ | "table-caption"
+ | "none"
+ | "inherit"
+ }?
+ SVG.visibility.attrib =
+ attribute visibility { "visible" | "hidden" | "inherit" }?
+ SVG.Graphics.extra.attrib = empty
+ SVG.Graphics.attrib &=
+ SVG.display.attrib, SVG.visibility.attrib, SVG.Graphics.extra.attrib
+}