Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 MediaWiki 与 MathJax 一起使用,因为很多页面都有数学方程式。但在某些页面上,我还需要按原样显示字符串 $x$。
有什么方法可以逃避 $x$ 使其不调用 MathJax 并显示为斜体 x?
MathJax 支持 \$ 在表达式中转义 $,但这不适用于初始 $(当然)。
如果您processEscapes:true在tex2jax配置部分中设置,那么您将能够转义初始美元符号以允许您键入$x$. 或者,您可以<span class="tex2jax_ignore">...</span>在不希望 MathJax 处理的文本周围使用。也许更容易在 .<code>...</code>周围使用$x$,因为 MathJax 不处理代码块内的文本。
processEscapes:true
tex2jax
$x$
<span class="tex2jax_ignore">...</span>
<code>...</code>
戴维德