0
跟着this page,我嘗試爲簡單的公式設置一個顏色到div容器中。字體顏色的Mathjax擴展
的例子看來,方程(等顏色),不解釋,我不知道如何使它呈現。
JS:
MathJax.Hub.Config({
messageStyle: "none",
TeX: { equationNumbers: {autoNumber: "all"}},
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [ ['\\begin{displaymath}','\\end{displaymath}'], ['\\begin{equation}','\\end{equation}'] ],
processEscapes: true,
preview: "none"
}});
MathJax.Hub.Config({ TeX: { extensions: ["color.js"] }});
HTML:
<div id="containerMath">
$\definecolor{energy}{RGB}{0,0,172}
\color{energy} ax+b=c$
</div>
任何人都已經嘗試顏色Mathjax字體?