- From: Bartolomé Sintes Marco <bartolomesintes@ono.com>
- Date: Thu, 23 Nov 2006 13:43:52 +0100
- To: www-amaya@w3.org
Hi, I have been trying to create a simple formula (sum of i from 0 to infinite) and Amaya creates the following source code: <p>Amaya: <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <munderover> <mo>∑</mo> <mn>0</mn> <mo>∞</mo> </munderover> <mi>i</mi> </mrow> </math></p> When you create the formula, it looks OK in Amaya but it looks bad in FF and IE (with MathPlayer). When the document is reloaded in Amaya, then it looks bad as in FF and IE. I have modified the source code changing the <mo>∑</mo> into <mi>∑</mi> and then it looks ok in Amaya, FF and IE: <p>Modified: <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <munderover> <mi>∑</mi> <mn>0</mn> <mo>∞</mo> </munderover> <mi>i</mi> </mrow> </math></p> The same problem seems to happen when the formula is lim x-> inf <p>Amaya: <math xmlns="http://www.w3.org/1998/Math/MathML"> <munder> <mo>lim</mo> <mrow> <mi>x</mi> <mo>→</mo> <mo>∞</mo> </mrow> </munder> <mi>x</mi> </math></p> <p>Modified: <math xmlns="http://www.w3.org/1998/Math/MathML"> <munder> <mi>lim</mi> <mrow> <mi>x</mi> <mo>→</mo> <mo>∞</mo> </mrow> </munder> <mi>x</mi> </math></p> Is it a bug? Best regards, Bartolomé Sintes (http://www.mclibre.org
Received on Thursday, 23 November 2006 12:44:01 UTC