我下载了最新的katex构建版本here。我正在尝试将其集成到我的 Electron 项目中。作为初学者,我在实现自己想要的东西方面遇到了麻烦。

以下代码使用一类"c = \\pm\\sqrt{a^2 + b^2}"div字符串呈现(一行代码)。

const theorem = document.querySelector('.theorem');

katex.render("c = \\pm\\sqrt{a^2 + b^2}", theorem, {
   throwOnError: false
});

我将如何呈现以下内容
\begin{Bmatrix}

   a & b \\

   c & d

\end{Bmatrix}

最佳答案

const matrix = document.querySelector('.matrix');

katex.render("\\begin{Bmatrix}\n\n   a & b \\\\\n\n   c & d\n\n\\end{Bmatrix}", matrix, {
   throwOnError: false
});

关于javascript - 使用KaTex渲染数学,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55554977/

10-11 12:00