|
本帖最后由 niuyingli 于 2011-3-18 16:36 编辑
据我所知,目前对MathML支持的公共博客只有www.blogger.com,可惜已经被屏蔽了。有一篇帖子:
http://yusufma.blogspot.com/2008/10/bloggermathml.html
介绍如何在博客里写公式,可是博客必须能够接受javascript。这个帖子是被屏蔽的。原文如下:
=======================================================
2008年10月28日 星期二让blogger支持MathML公式输出 我想在我的blog里显示公式怎么办?我可以把每个公式变成图片文件,然后把公式作为图片显示。我不需要截屏软件,OpenOffice可以很方便的把包含公式的文档转换为包含图片的HTML文件。但是这么做太笨了。更好的办法是用MathML在网页上显示公式。 MathML是XML的一个应用,是W3C推荐使用的网页数学公式显示方案。遗憾的是,目前不是所有的浏览器都支持MathML。Firefox本身包含对MathML的支持,但是你可能需要安装显示数学公式需要的字体。如果你使用Linux,你的发行版很可能包含(甚至已经安装)了该字体,请以mathml为关键词搜索以确定是否已经安装。如果你不幸使用Windows,请到这里按照说明自行安装字体。如果你更不幸使用IE浏览器,那只好自生自灭了。(开个玩笑,请安装MathPlayer插件)。 现在你可以到这里测试一下你的浏览器是不是可以正确显示MathML公式了。能显示,很好。可是,blogger并不能自动支持MathML的显示,因为blogger的网页扩展名都是html,浏览器不会自动按照xml来显示。这个问题可以这么解决:到这里下载一个小javascript文件,把这个文件直接放到你的blogger template文件的head里面,或者放到互联网上某个地方,在template的head里面加入下面一行:<script type="text/javascript" src="javascript文件的链接"></script>这样blogger就可以显示你的MathML公式了。 MathML语法非常复杂,要想直接用MathML写出一个公式并不容易。TtM是个把LaTeX公式转换成MathML代码的小工具。这下就方便多了。把转换好的MathML代码复制到你的blog就可以了。 下面是一个MathML显示公式的例子: U(r)=A0W0W(z)exp[-ρ2W2(z)]exp[-jkz-jkρ22R(z)+jζ(z)] |
<script type="text/javascript" src="javascript文件的链接"></script>
这样blogger就可以显示你的MathML公式了。 MathML语法非常复杂,要想直接用MathML写出一个公式并不容易。TtM是个把LaTeX公式转换成MathML代码的小工具。这下就方便多了。把转换好的MathML代码复制到你的blog就可以了。 下面是一个MathML显示公式的例子:
=======================================================
其实需要能够在博客里写入如下代码:
- <script type="text/javascript">
- /*
- March 19, 2004 MathHTML (c) Peter Jipsen http://www.chapman.edu/~jipsen
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or (at
- your option) any later version.
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- (at http://www.gnu.org/copyleft/gpl.html) for more details.
- */
- function convertMath(node) {// for Gecko
- if (node.nodeType==1) {
- var newnode =
- document.createElementNS("http://www.w3.org/1998/Math/MathML",
- node.nodeName.toLowerCase());
- for(var i=0; i < node.attributes.length; i++)
- newnode.setAttribute(node.attributes[i].nodeName,
- node.attributes[i].nodeValue);
- for (var i=0; i<node.childNodes.length; i++) {
- var st = node.childNodes[i].nodeValue;
- if (st==null || st.slice(0,1)!=" " && st.slice(0,1)!="\n")
- newnode.appendChild(convertMath(node.childNodes[i]));
- }
- return newnode;
- }
- else return node;
- }
- function convert() {
- var mmlnode = document.getElementsByTagName("math");
- var st,str,node,newnode;
- for (var i=0; i<mmlnode.length; i++)
- if (document.createElementNS!=null)
- mmlnode[i].parentNode.replaceChild(convertMath(mmlnode[i]),mmlnode[i]);
- else { // convert for IE
- str = "";
- node = mmlnode[i];
- while (node.nodeName!="/MATH") {
- st = node.nodeName.toLowerCase();
- if (st=="#text") str += node.nodeValue;
- else {
- str += (st.slice(0,1)=="/" ? "</m:"+st.slice(1) : "<m:"+st);
- if (st.slice(0,1)!="/")
- for(var j=0; j < node.attributes.length; j++)
- if (node.attributes[j].nodeValue!="italic" &&
- node.attributes[j].nodeValue!="" &&
- node.attributes[j].nodeValue!="inherit" &&
- node.attributes[j].nodeValue!=undefined)
- str += " "+node.attributes[j].nodeName+"="+
- """+node.attributes[j].nodeValue+""";
- str += ">";
- }
- node = node.nextSibling;
- node.parentNode.removeChild(node.previousSibling);
- }
- str += "</m:math>";
- newnode = document.createElement("span");
- node.parentNode.replaceChild(newnode,node);
- newnode.innerHTML = str;
- }
- }
- if (document.createElementNS==null) {
- document.write("<object id="mathplayer"\
- classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987"></object>");
- document.write("<?import namespace="m" implementation="#mathplayer"?>");
- }
- if(typeof window.addEventListener != 'undefined'){
- window.addEventListener('load', convert, false);
- }
- if(typeof window.attachEvent != 'undefined') {
- window.attachEvent('onload', convert);
- }
- </script>
- <math xmlns="http://www.w3.org/1998/Math/MathML"><mstyle displaystyle="true"><mrow><mi>U</mi><mo stretchy="false">(</mo><mi>r</mi><mo stretchy="false">)</mo><mo>=</mo><msub><mrow><mi>A</mi></mrow><mrow><mn>0</mn></mrow></msub><mfrac><mrow><msub><mrow><mi>W</mi></mrow><mrow><mn>0</mn></mrow></msub></mrow><mrow><mi>W</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mi>exp</mi><mrow><mo>[</mo><mo>-</mo><mfrac><mrow><msup><mrow><mi>ρ</mi></mrow><mrow><mn>2</mn></mrow></msup></mrow><mrow><msup><mrow><mi>W</mi></mrow><mrow><mn>2</mn></mrow></msup><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mo>]</mo></mrow><mi>exp</mi><mrow><mo>[</mo><mo>-</mo><mi>jkz</mi><mo>-</mo><mi>jk</mi><mfrac><mrow><msup><mrow><mi>ρ</mi></mrow><mrow><mn>2</mn></mrow></msup></mrow><mrow><mn>2</mn><mi>R</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mo>+</mo><mi>j</mi><mi>ζ</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo><mo>]</mo></mrow></mrow></mstyle></math>
复制代码
或者
- <script type="text/javascript" src="javascript文件的链接"></script>
- <math xmlns="http://www.w3.org/1998/Math/MathML"><mstyle displaystyle="true"><mrow><mi>U</mi><mo stretchy="false">(</mo><mi>r</mi><mo stretchy="false">)</mo><mo>=</mo><msub><mrow><mi>A</mi></mrow><mrow><mn>0</mn></mrow></msub><mfrac><mrow><msub><mrow><mi>W</mi></mrow><mrow><mn>0</mn></mrow></msub></mrow><mrow><mi>W</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mi>exp</mi><mrow><mo>[</mo><mo>-</mo><mfrac><mrow><msup><mrow><mi>ρ</mi></mrow><mrow><mn>2</mn></mrow></msup></mrow><mrow><msup><mrow><mi>W</mi></mrow><mrow><mn>2</mn></mrow></msup><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mo>]</mo></mrow><mi>exp</mi><mrow><mo>[</mo><mo>-</mo><mi>jkz</mi><mo>-</mo><mi>jk</mi><mfrac><mrow><msup><mrow><mi>ρ</mi></mrow><mrow><mn>2</mn></mrow></msup></mrow><mrow><mn>2</mn><mi>R</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo></mrow></mfrac><mo>+</mo><mi>j</mi><mi>ζ</mi><mo stretchy="false">(</mo><mi>z</mi><mo stretchy="false">)</mo><mo>]</mo></mrow></mrow></mstyle></math>
复制代码
其中 src="javascript文件的链接",是将这个脚本放在网上的某个位置,例如:
src="http://www1.chapman.edu/~jipsen/mathml/mathhtml/MathMLinHTMLforFirefoxAndIE.js"
在做笔记的时候,经常需要输入公式。所以希望考虑支持MathML的问题。谢谢! |
|