GitHub Page支持Latex公式
Contact me
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
GitHub Page虽然支持Markdown,但是不能正确显示公式,可以借用MathJax帮助渲染。
方法:
在md文件开始处加入代码:
<head>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
inlineMath: [['$','$']]
}
});
</script>
</head>
比如输入\$ e = m c^2 \$
(去掉\
)显示为: $ e = m c^2 $