MathMLでウェブのマークを使用して同様の質問を見つけました が、解決策を見つけることができませんでした。MathJaxWebサイトから次のサンプルを試しました
<!DOCTYPE html>
<html>
<head>
<title>MathJax TeX Test Page</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
</head>
<body>
<span style='font-size:130%'>
When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</span>
</body>
</html>
私は得る
Internet Explorerは、このWebページがスクリプトまたはActiveXコントロールを実行できないように制限しました。
IE9での警告。
この数学ブログ
http://swanlotus.com/varieties-of-multiplication/
IE9では正常に動作します。
この問題を修正するには、サンプルにどのような変更を加える必要があるのか疑問に思っています。