IEとChromeで数式を表示するためMathJaxを使ってMathMLについて勉強しています。どのような方法...私はfollwing LIKE '宣言' タグを使用しようとすると、MathJaxとMathMLはIEで 'Unknown node type:declare'と表示しました
<head>
<meta charset="UTF-8">
<title>Mixed Markup</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
MathML: {
extensions: ["content-mathml.js"]
}
});
</script>
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<body>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<declare>
<ci> A </ci>
<vector>
<ci> a </ci>
<ci> b </ci>
<ci> c </ci>
</vector>
</declare>
</math>
</body>
IEが
Unknown node type: declare
そう...何ができるとして、それを示しています私はdeclare
タグを使用するのですか?
将来の注意:cdn.mathjax.orgの寿命が近づいているので、移行のヒントについてはhttps://www.mathjax.org/cdn-shutting-down/をチェックしてください。 –