atom feed10 messages in org.oasis-open.lists.docbook-appsRe: [docbook-apps] MathML and <fo:ins...
FromSent OnAttachments
Mads IpsenMar 30, 2007 12:15 am 
Jirka KosekMar 30, 2007 12:42 am.pgp
Chris ChiassonMar 30, 2007 1:44 am 
Jirka KosekMar 30, 2007 2:25 am.pgp
Chris ChiassonMar 30, 2007 2:31 am 
Jirka KosekMar 30, 2007 2:34 am.pgp
Chris ChiassonMar 30, 2007 2:56 am 
Bob StaytonMar 30, 2007 9:16 am 
Chris ChiassonMar 30, 2007 2:58 pm 
Jirka KosekMar 31, 2007 2:20 am.pgp
Subject:Re: [docbook-apps] MathML and <fo:instream-foreign-object>
From:Chris Chiasson (chr@chiasson.name)
Date:Mar 30, 2007 2:31:14 am
List:org.oasis-open.lists.docbook-apps

On 3/30/07, Jirka Kosek <jir@kosek.cz> wrote:

Also, in the namespaced version of the xsl 1 stylesheets, is it now possible to create a version that doesn't require MathML elements to have a prefix?

XSLT is not prefix aware, so you can use any prefix for your MathML elements, including using no prefix and relying on default namespace, like:

<article> <title>MathML test</title>

<para>Fraction <inlineequation><math xmlns="http://www.w3.org/1998/Math/MathML"><mfrac><mn>1</mn><mi>n</mi></mfrac></math></inlineequation></para> </article>

Does this work with the current stylesheets, or is it still looking for elements with the mml: (or svg: ) prefix? I think the reason the old stylesheets needed the prefixes was that they did not use namespaces. Is that true?