标题很一般,但我有一个特定的问题。
我得到了一个TeX的数据库,有原始形式和HTML形式
原始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,但没有成功。
如果你只是想在你的网络应用程序上显示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文档很清楚,并解释了如何执行此操作。