让Jekyll支持Latex
23 Jul 2012三步轻松解决,环保节能无公害(大概):
- 在_layouts/default.html内加入以下内容
<!-- MathJax Section -->
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
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>
- 上一步已经加入了has-jax字符串,接下来再更改style.css
body div.content {}
body div.content code.has-jax {
font: inherit;
font-size: 100%;
background: inherit;
border: inherit;
color: #000000;
}
- 然后就没有什么事了…
\[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\ldots} } } } \]
Reference:
No comments
Comments are closed