summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc60
1 files changed, 0 insertions, 60 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc
deleted file mode 100644
index e854b1cd13a..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc
+++ /dev/null
@@ -1,60 +0,0 @@
-# This is the Mathematical Markup Language (MathML) 3.0, an XML
-# application for describing mathematical notation and capturing
-# both its structure and content.
-#
-# Copyright 1998-2009 W3C (MIT, ERCIM, Keio)
-#
-# Use and distribution of this code are permitted under the terms
-# W3C Software Notice and License
-# http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
-
-
-default namespace m = "http://www.w3.org/1998/Math/MathML"
-
-ContExp = semantics-contexp | cn | ci | csymbol | apply | bind | share | cerror | cbytes | cs
-
-cn = element cn {cn.attributes,cn.content}
-cn.content = text
-cn.attributes = attribute type {"integer" | "real" | "double" | "hexdouble"}
-
-semantics-ci = element semantics {semantics.attributes,(ci|semantics-ci),
- (annotation|annotation-xml)*}
-
-semantics-contexp = element semantics {semantics.attributes,ContExp,
- (annotation|annotation-xml)*}
-
-ci = element ci {ci.attributes, ci.content}
-ci.attributes = CommonAtt, ci.type?
-ci.type = attribute type {"integer" | "rational" | "real" | "complex" | "complex-polar" | "complex-cartesian" | "constant" | "function" | "vector" | "list" | "set" | "matrix"}
-ci.content = text
-
-
-csymbol = element csymbol {csymbol.attributes,csymbol.content}
-
-SymbolName = xsd:NCName
-csymbol.attributes = CommonAtt, cd
-csymbol.content = SymbolName
-
-BvarQ = bvar*
-bvar = element bvar { ci | semantics-ci}
-
-apply = element apply {CommonAtt,apply.content}
-apply.content = ContExp+
-
-
-bind = element bind {CommonAtt,bind.content}
-bind.content = ContExp,bvar*,ContExp
-
-share = element share {CommonAtt, src, empty}
-
-cerror = element cerror {cerror.attributes, csymbol, ContExp*}
-cerror.attributes = CommonAtt
-
-cbytes = element cbytes {cbytes.attributes, base64}
-cbytes.attributes = CommonAtt
-base64 = xsd:base64Binary
-
-cs = element cs {cs.attributes, text}
-cs.attributes = CommonAtt
-
-MathExpression |= ContExp