博客园(cnblogs)中插入数学公式的方法
使用了MathJax.js这个插件来显示数学公式。
在设置中插入下列html代码:
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['`','`'], ['$','$'], ["\\(","\\)"] ], processEscapes: true } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Queue(function() { var all = MathJax.Hub.getAllJax(), i; for(i=0; i < all.length; i += 1) { all[i].SourceElement().parentNode.className += ' has-jax'; } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script>
然后就可以用两个反引号把数学公式括起来就能贴公式了。
另附:手写公式转LaTex
公式示例:
`x=\dfrac {-b\pm \sqrt {b^{2}-4ac}} {2a}`
`e^{\pi i}-1=0`