KaTeX 的官方 starter-template 不工作

KaTeX's official starter-template not working

我很简单地在 KaTeX starter-template 中插入了一个 body,但是,它不起作用。这是为什么?我需要做什么才能呈现 body?

<!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>

查看 unminified version 代码,我发现应用了默认设置。应使用以下分隔符:

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

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

<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>