diff options
Diffstat (limited to 'stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/relaxng/mathml.rng')
-rw-r--r-- | stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/relaxng/mathml.rng | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/relaxng/mathml.rng b/stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/relaxng/mathml.rng new file mode 100644 index 000000000..f78772512 --- /dev/null +++ b/stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/relaxng/mathml.rng @@ -0,0 +1,122 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + This file is part of DocBook V5.0 + + Copyright 1992-2008 HaL Computer Systems, Inc., + O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software + Corporation, Norman Walsh, Sun Microsystems, Inc., and the + Organization for the Advancement of Structured Information + Standards (OASIS). + + Release: $Id: mathml.rnc 8931 2010-10-20 13:29:20Z nwalsh $ + + Permission to use, copy, modify and distribute the DocBook schema + and its accompanying documentation for any purpose and without fee + is hereby granted in perpetuity, provided that the above copyright + notice and this paragraph appear in all copies. The copyright + holders make no representation about the suitability of the schema + for any purpose. It is provided "as is" without expressed or implied + warranty. + + If you modify the DocBook schema in any way, label your schema as a + variant of DocBook. See the reference documentation + (http://docbook.org/tdg5/en/html/ch05.html#s-notdocbook) + for more information. + + Please direct all questions, bug reports, or suggestions for changes + to the docbook@lists.oasis-open.org mailing list. For more + information, see http://www.oasis-open.org/docbook/. + + ====================================================================== +--> +<grammar ns="http://docbook.org/ns/docbook" xmlns:db="http://docbook.org/ns/docbook" xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns:rng="http://relaxng.org/ns/structure/1.0" xmlns:ctrl="http://nwalsh.com/xmlns/schema-control/" xmlns="http://relaxng.org/ns/structure/1.0"> + <define name="db.equation.content" combine="choice"> + <oneOrMore> + <ref name="db._any.mml"/> + </oneOrMore> + </define> + <define name="db.inlineequation.content" combine="choice"> + <oneOrMore> + <ref name="db._any.mml"/> + </oneOrMore> + </define> + <define name="db.imageobject.content" combine="choice"> + <ref name="db.imagedata.mathml"/> + </define> + <!-- ============================================================ --> + <div> + <db:refname>imagedata</db:refname> + <db:refpurpose>A MathML expression in a media object</db:refpurpose> + <define name="db.imagedata.mathml.role.attribute"> + <attribute name="role"/> + </define> + <define name="db.imagedata.mathml.attlist"> + <interleave> + <optional> + <ref name="db.imagedata.mathml.role.attribute"/> + </optional> + <ref name="db.common.attributes"/> + <optional> + <attribute name="format"> + <db:refpurpose>Specifies that the format of the data is MathML</db:refpurpose> + <value>mathml</value> + <a:documentation>Specifies MathML.</a:documentation> + </attribute> + </optional> + <optional> + <ref name="db.imagedata.align.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.valign.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.width.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.contentwidth.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.scalefit.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.scale.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.depth.attribute"/> + </optional> + <optional> + <ref name="db.imagedata.contentdepth.attribute"/> + </optional> + </interleave> + </define> + <define name="db.imagedata.mathml.info"> + <ref name="db._info.title.forbidden"/> + </define> + <define name="db.imagedata.mathml"> + <element name="imagedata"> + <ref name="db.imagedata.mathml.attlist"/> + <ref name="db.imagedata.mathml.info"/> + <oneOrMore> + <ref name="db._any.mml"/> + </oneOrMore> + </element> + </define> + </div> + <!-- ============================================================ --> + <div> + <db:refname>mml:*</db:refname> + <db:refpurpose>Any element from the MathML namespace</db:refpurpose> + <define name="db._any.mml"> + <element> + <nsName ns="http://www.w3.org/1998/Math/MathML"/> + <zeroOrMore> + <choice> + <ref name="db._any.attribute"/> + <text/> + <ref name="db._any"/> + </choice> + </zeroOrMore> + </element> + </define> + </div> +</grammar> |