KaTeX 的官方入门模板不起作用



我在KaTeX入门模板中插入了一个非常简单的主体,但它不起作用。为什么?我需要做什么来渲染身体?

<!DOCTYPE html>
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css" integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js" integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
</head>
<body>

<p>1</p>
<p>Inline math $p^{k}(1-p)^{n-k}$ is what this is</p>

<p>2</p>
<p>$begin{aligned}
x &= 2
&= frac{3}{2}
end{aligned}$
</p>


</body>
</html>

查看代码的未优化版本,我发现了应用的默认设置。应使用以下delimeter:

  • $$
  • \(
  • \)
  • \[
  • \]

我能够通过将公式两侧的$更改为$$来使第一个公式起作用。

<p>1</p>
<p>Inline math $$p^{k}(1-p)^{n-k}$$ is what this is</p>

我能够通过将两侧的$更改为$$并在每行的末尾添加\来使第二个公式起作用。

<p>2</p>
<p>$$begin{aligned} \
x &= 2 \
&= frac{3}{2} \
end{aligned}$$
</p>

相关内容

  • 没有找到相关文章

最新更新