我最近在我的网站上实施了 LaTeX。我使用 MathJax 显示我的方程式。我在显示粗体时遇到了问题。
这是我的乳胶语法:
[latex] \text{{\bf 1 calorie} = amount of energy required to raise the temperature of {\bf 1 gram} of water by 1 degree Celsius.} [/latex]
我不确定这是浏览器问题还是 MathJax 本身的问题。
编辑:MathJax 的渲染方式如下:http://bit.ly/1l0v6p5
答案1
看来,\textbf
如果包含在内,MathJax 会将其解释为文本\text
。更正语法:[latex]\textbf{1 calorie} \text{ = amount of energy required to raise the temperature of } \textbf{1 gram} \text { of water by 1 degree Celsius.}[/latex]
有效 :)