gpt4 book ai didi

html - 如何转义 MathJax 的双反斜杠?

转载 作者:可可西里 更新时间:2023-11-01 13:23:57 24 4
gpt4 key购买 nike

我通过将以下代码添加到 footer.php 来使 MathJax 与 WordPress 一起工作。它适用于简单的数学符号和方程式。

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>

<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>

但它不适用于多线方程,例如,

enter image description here

它呈现为一行,如下所示。

enter image description here

这是由于在 WordPress 或 markdown 编辑器中默认将 \\ 渲染为 \ 造成的。一种可能的解决方案是将 $$...$$ 中的所有 \\ 转换为 \\\\

我希望我可以直接使用 \\ 作为换行符。它适用于 StackEdit ,但我不知道如何转义 MathJax 的 \\


这是源代码。 (我使用 markdown 编辑器。)

$$
\begin{bmatrix}
PR(p_1) \\
PR(p_2) \\
\vdots \\
PR(p_N)
\end{bmatrix} =
\begin{bmatrix}
{(1-d)/ N} \\
{(1-d) / N} \\
\vdots \\
{(1-d) / N}
\end{bmatrix}
+ d
\begin{bmatrix}
\ell(p_1,p_1) & \ell(p_1,p_2) & \cdots & \ell(p_1,p_N) \\
\ell(p_2,p_1) & \ddots & & \vdots \\
\vdots & & \ell(p_i,p_j) & \\
\ell(p_N,p_1) & \cdots & & \ell(p_N,p_N)
\end{bmatrix}
\cdot
\begin{bmatrix}
PR(p_1) \\
PR(p_2) \\
\vdots \\
PR(p_N)
\end{bmatrix}
$$

最佳答案

\ 是许多编程语言中常用的转义字符。

例子:C语言中\n表示换行。这里 n 表示换行,\ 告诉编译器以不同于普通 n< 的方式查看 n/。转义字符 \ 用于告诉编译器紧随其后的字符是不正常的,应该区别对待(例如 \n 换行符)。

您可以在每个要使用的实际 \ 之前使用 \。所以如果你想要 \begin{bmatrix} 你必须写 \\begin{bmatrix} 如果你想要 \\ 你需要使用 \\\\

在某些系统中也可以将文本标记为“逐字”文本。通过这种方式,您可以标记整个文本 block 以忽略所有在编程语言中具有特殊含义的字符。这一点因系统而异,Markdown 使用 `code block```code block``

尝试将您的数学标记为代码块,您应该能够正常使用反斜杠,例如`这里是数学`

详细解释: http://docs.mathjax.org/en/latest/tex.html#tex-and-latex-in-html-documents

关于html - 如何转义 MathJax 的双反斜杠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42228504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com