Re: Problems with an xsl transformation using the new mathml rendering sytlesheet

Unfortunately IE has a bug that means that it will not accept the
xhtml+mathMl dtd (or any other dtd based on XHTML modularisation)

This means that you can not use entity names in your document 
so rather than sum you have to have to use ∑ rather than ∑
or alternatively you can use
<!DOCTYPE html SYSTEM "myents.dtd">
<html>
...

where myents.dtd has (only) whatever entities you need, copied from teh
mathml dtd eg in this case
<!ENTITY Sum "&#x2211;">
<!ENTITY infin "&#x221E;">

Then you can use &Sum; and &infin;

Hopefully this will get fixed at the next update to IE6, whenever that
will be.

David


_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

Received on Monday, 13 May 2002 16:35:04 UTC