0

标题很笼统,但我有一个具体的问题。

我得到了一个原始和 HTML 格式的 TeX 数据库。这里有些例子:

原始 TeX:

Is there a number `a` such that `$\displaystyle  \lim_{x \to -2} \frac{3x^2 + ax + a + 3}{x^2 + x - 2}$` exists? If so, find the value of `a` and the value of the limit.

HTML中的相同问题:

<p> Is there a number <code>a</code> such that <code class='latex inline'>\displaystyle  \lim_{x \to -2} \frac{3x^2 + ax + a + 3}{x^2 + x - 2}</code> exists?
     If so, find the value of <code>a</code> and the value of the limit.</p>

我想在我的 Web 应用程序上显示它,但我很难找到我应该使用哪个库来呈现这些。我不知道它<code class='latex inline'>来自哪里。任何人都可以确定它的形式以及如何呈现它们吗?我一直在尝试使用 KaTeX 无济于事。

4

1 回答 1

0

如果您只想在您的网络应用程序上显示 tex 表达式,也许您会对 MathJax 感兴趣?在您的 html 中包含以下行允许您编写如下内容:

\[ <some_tex_expression> \]

并获得良好的渲染。

要包括的行:

<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> 
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-mml-chtml.js"></script>

现在,如果您想在 $ 符号之间编写内联数学,您只需在脚本中添加几行。Mathjax 文档很清楚并解释了如何执行此操作。

于 2020-07-24T16:19:01.910 回答