2015-01-23 16:25
要在在网页中显示公式,可以用 MathJax(MathJax 是一个开源的基于 Ajax 的数学公式显示的解决方案),其中一种比较好的方法是mathjax官方推荐的用 MathJax 的 CDN (内容分发网络) 进行调用,以WordPress为例, 只需要在主题的 header.php 文件中的 <head> 与 </head> 之间加入代码:
<pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
<span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
<span class="nt"></script></span>
</pre>
注:以上代码部分首尾有一对"pre","/pre"。
然后在后台写文章时输入 LaTeX 公式, 前台就能显示了。与 Latex 在格式方面有一点不同,就是输入行内公式时不适用 ' $ 公式 $ ' 形式,而是' <code>( 公式 )</code> '形式。如:
<code>(i\hbar \frac{\partial}{\partial t}\psi =H\psi )</code>
显示为
<code> (i\hbar \frac{\partial}{\partial t}\psi =H\psi) </code>
其他语法好像一样。
好吧,简书好像并不支持MathJax。