Go Back   Velocity Reviews > Newsgroups > XML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

XML - MathML weirdness

 
Thread Tools Search this Thread
Old 05-17-2006, 08:40 PM   #1
Default MathML weirdness


I'm experimenting with MathML, and have run into difficulty.

Given the simple XML:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE component SYSTEM "mathml2.dtd">
<mathDisplay>
<math>
<msub>
<mi>z</mi>
<mn>2</mn>
</msub>
</math>
</mathDisplay>
and the simple XSLT stylesheet given below, I expect the output
<?xml version="1.0" encoding="utf-8"?>
<mathML><xmathDisplay><xmath><xmsub><xmi>z</xmi>
<xmn>2</xmn></xmsub></xmath></xmathDisplay></mathML>
Instead, I get
<?xml version="1.0" encoding="utf-8"?>
<mathML><xmathDisplay>z2</xmathDisplay></mathML>
I get the results I expect if I delete the DOCTYPE line from the xml
file.

I can also get the results I expect if I change the names of the MathML
elements to, say, <a>, <b>, <c>, ...

In what way is the behavior of an XSLT stylesheet dependent upon the
details
of an XML document's doctype?

Thanks!

The spreadsheet:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlnssl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:strip-space elements="*"/>
<xslutput method="xml" encoding="utf-8"/>
<xsl:template match="/">
<mathML>
<xsl:apply-templates/>
</mathML>
</xsl:template>
<xsl:template match="mathDisplay">
<xmathDisplay>
<xsl:apply-templates/>
</xmathDisplay>
</xsl:template>
<xsl:template match="math">
<xmath>
<xsl:apply-templates/>
</xmath>
</xsl:template>
<xsl:template match="msub">
<xmsub>
<xsl:apply-templates/>
</xmsub>
</xsl:template>
<xsl:template match="mi">
<xmi>
<xsl:apply-templates/>
</xmi>
</xsl:template>
<xsl:template match="mn">
<xmn>
<xsl:apply-templates/>
</xmn>
</xsl:template>
</xsl:stylesheet>



Fred
  Reply With Quote
Old 05-17-2006, 08:50 PM   #2
Joe Kesselman
 
Posts: n/a
Default Re: MathML weirdness

Try it without specifying the DTD. If that produces the right output,
check whether the MathML DTD is automatically setting default namespaces
for those elements. If so, your stylesheet has to be made namespace-aware.

  Reply With Quote
Old 05-17-2006, 09:12 PM   #3
Fred
 
Posts: n/a
Default Re: MathML weirdness

Adding xmlns:m="http://www.w3.org/1998/Math/MathML" to xsl:stylesheet
and prefixing all the MathML element names in the xsl:templates with
"m:" worked. Thanks!

I don't quite understand why it's necessary to specify the namespace if
one isn't going to be using the prefixed form of the element names in
the XML documents ... nor does a quick scan of Kay's book help. Could
you point me to an explanation of this phenomenon?

Thanks again,
Fred

  Reply With Quote
Old 05-17-2006, 10:21 PM   #4
Joe Kesselman
 
Posts: n/a
Default Re: MathML weirdness

Fred wrote:
> I don't quite understand why it's necessary to specify the namespace if
> one isn't going to be using the prefixed form of the element names in
> the XML documents


The meaningful thing isn't the prefix, or lack of one -- it's whether
the element and/or attribute is bound to a namespace. In your case, the
DTD is indeed asserting such a binding, via a default namespace
declaration (xmlns=).

XPath, and XSLT, are always namespace-aware. This means all element and
attribute names they refer to have to be in the correct namespace, or
they won't match. Since XPath 1.0 has no concept of default namespaces
in its own syntax, that means that the only way to refer to namespaced
names is to use a prefix bound to the correct namespace.

Don't confuse syntax and semantics. Prefixes are syntax. Namespaces are
the semantic they represent.
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump