注册结束得到博客账号后,点击我的博客,进入管理,在页首html一栏内添加:
保存修改之后,即可在博客文章,随笔中用LaTeX代码写公式啦!
<script type="text/javascript" src="http://latex.codecogs.com/latex.js"></script>
具体过程如下$x^2$:
- 点击编辑栏中的HTML按钮,进入编辑源码界面;
- 在需要插入公式的地方写入LaTeX代码,例如插入行内公式 $x^2$ ,可在行内公式后面加上代码:$x^2$;
- 依上例所示,完全依照LaTex的公式代码格式插入文章对应的HTML处亦可插入行间公式。
这种方法生成的公式不太稳定,且没有标号功能;
第二种方法利用网上的一个在线编辑器,实现了LaTeX和博客的无缝对接。先在页首html一栏内添加:
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], processEscapes: true }, TeX: { equationNumbers: { autoNumber: ["AMS"], useLabelIds: true } }, "HTML-CSS": { linebreaks: { automatic: true }, scale: 85 }, SVG: { linebreaks: { automatic: true } } }); </script> <script type="text/javascript" src="http://c328740.r40.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script>
在写随笔或者文章时,只需要直接在正文中写公式即可,例如:
\begin{equation} \frac{1}{1+x^2} \end{equation}
生成的效果为:\begin{equation} \frac{1}{1+x^2} \end{equation}
需要注意的是,这种行间公式在书写时选择在编辑html源码状态下书写比较好。