Zhy's Blog~

View My GitHub Profile

Archive
Categories
About

MathJax 公式编辑学习笔记

为什么用MathJax,我只放一张图:
公式编辑器-example
使用MathJax,公式就可以在页面中这样显示:
\(a^2 + b^2 = c^2\)
公式显示风格完全是可以订制的。具体安装配置见文末。

基本用法

符号

安装与配置

这里的配置依照的是本博客的搭建需求,原理很简单,自取所需。

<script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>
<script src='https://zhyack.github.io/mathjax-local/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>
	styles: {
			  ".MathJax .merror": {
			    color:   "#FFFFFF",
			    "font-style": "normal",
			    "font-size":  "100%"
			  }
	}
<script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    styles: {
		  ".MathJax .merror": {
		    color:   "#FFFFFF",
		    "font-style": "normal",
		    "font-size":  "100%"
		  }
		
		}
  });
</script>
© 个人原创,未经允许,不得转载!

Copyright © 2015-2016 zhyack. All Rights Reserved.

如对文章有任何疑问,请移步问题聚集区一览~