我试图用最近实现的LaTEX文档制作HTML页面,我在head标记后使用了以下mathjax,脚本配置:
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { fonts: ["TeX"] }
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
"HTML-CSS": {
styles: {".MathJax": {color: "#FF0000 ! important"}}
}
});
MathJax.Hub.Queue(
["resetEquationNumbers",MathJax.InputJax.TeX],
["PreProcess",MathJax.Hub],
["Reprocess",MathJax.Hub]
);
</script>
当我尝试编写以下等式时:
\[
\det A=|A|=\left\{
\begin{array}{ll}
-\textrm{fixation d'une \textcolor{red}{ligne:}} i=\color{red}{p} \Rightarrow |A|=(-1)^{\color{red}{p}+j}\Delta_{\color{red}{p}j}\\
-\textrm{fixation d'une colonne: } j=\color{red}{p} \Rightarrow |A|=(-1)^{\color{red}{p}+i}\Delta_{i\color{red}{p}}
\end{array}
\right.
\]
命令textcolor{red}
不起作用。我可以使用MathJax对其进行配置以获取等式中的彩色文本吗?
这是我编译的结果:
答案 0 :(得分:0)
根据the documentation,MathJax不专注于文本模式,仅允许在其文本模式宏(\text{}
等)中进行以下操作:$
用于重新进入数学模式, \ref
和\eqref
。
因此,无法在\textcolor
内部使\text
之类的东西正常工作。
但是,您可以将\color
包裹在\text
周围为文本着色,从而可以定义自定义宏\textwithcolor{red}{some text mode}
,例如,使用$\require{color}\newcommand{\textwithColor}[2]{\color{#1}{\text{#2}}} \textwithColor{red}{halleo}$
。
您仍然需要退出文本模式才能使用它。
FWIW,有一个开放的issue for MathJax v3用于在文本模式下重新考虑宏。