MathPlayer 2.2 stretches parentheses to the size of the integral symbol.

Without using mrow tag around the parentheses, the above happens. This behavior does not happen with the summation symbol for example. Also, this is not an issue with Firefox (XHTML or HTML5). Is there any way we can get it to work for integrals without using mrow tag around the parentheses?

To understand the problem, please copy the following and save as a “.htm” file. Thank you, Saf:

/////////Begin: HTML file source view//////////

<html xmlns:m="http://www.w3.org/1998/Math/MathML" >
 
<head><object id="mathplayer" classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987"></object>
<?import namespace="m" implementation="#mathplayer"?>
</head>
 
<body>
<div>
<p>Without using mrow tag around parenthesis</p>
<br/>
<m:math><m:mo>&#8747;</m:mo><m:mi>f</m:mi><m:mo>(</m:mo><m:mi>t</m:mi><m:mo>)</m:mo><m:mi>d</m:mi><m:mi>t</m:mi></m:math>
<br/>

<p>After using mrow tag around parenthesis</p>
<m:math><m:mo>&#8747;</m:mo><m:mi>f</m:mi><m:mrow><m:mo>(</m:mo><m:mi>t</m:mi><m:mo>)</m:mo></m:mrow><m:mi>d</m:mi><m:mi>t</m:mi></m:math>
<br/>
<p>Without using mrow tag around parenthesis. Works ok with summation symbol</p>
<br/>
<m:math><m:mo>&#8721;</m:mo><m:mi>f</m:mi><m:mo>(</m:mo><m:mi>t</m:mi><m:mo>)</m:mo><m:mi>d</m:mi><m:mi>t</m:mi></m:math>
</div>
</body>
 
</html>

/////////End: HTML file source view//////////

Received on Monday, 26 March 2012 03:39:49 UTC