1
以下是我用來測試MathML渲染的MathML示例代碼。MathML在Windows XP上使用Firefox渲染效果不佳,但在Linux上渲染良好
演示網址:在Windows XP http://jsfiddle.net/3ak4P/
<!DOCTYPE html>
<html lang="en">
<head>
<title>MathML demo</title>
<style type="text/css">
math {
display: block;
font-size: 16px;
}
</style>
</head>
<body>
<math>
<mrow>
<munder>
<mo>∑</mo>
<mrow>
<mi>p</mi>
<mtext> prime</mtext>
</mrow>
</munder>
<mi>f</mi>
<mo stretchy="false">(</mo>
<mi>p</mi>
<mo stretchy="false">)</mo>
<mo>=</mo>
<msub>
<mo stretchy="false">∫</mo>
<mrow>
<mi>t</mi>
<mo>></mo>
<mn>1</mn>
</mrow>
</msub>
<mi>f</mi>
<mo stretchy="false">(</mo>
<mi>t</mi>
<mo stretchy="false">)</mo>
<mo> </mo>
<mo mathvariant="italic">d</mo>
<mi>π</mi>
<mo stretchy="false">(</mo>
<mi>t</mi>
<mo stretchy="false">)</mo>
</mrow>
</math>
</body>
</html>
輸出與Firefox 8:在Debian GNU/Linux的
輸出與Firefox 8:
現在,考慮到不能堅持網站用戶安裝新字體等等,有什麼方法可以確保Windows用戶在使用MathML編寫數學公式方面也有很好的體驗?