使用 MathJax 渲染时如何在数学之前和之后放置一些 html
我在我的网站中使用 MathJax 1.1。我需要在处理器遇到的每个数学运算之前和之后放置一些html(在我的例子中是tex2jax)。
我该怎么做?
我应该注册回调吗?
我应该在配置中使用一些选项吗?
I am using MathJax 1.1 in my web site. I need to place some html before and after every math encountered by the processor (tex2jax in my case).
How can I do this?
Should I register a callback?
Should I use some options in configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MathJax 用户论坛讨论了此问题。您可以尝试
在数学之前添加
\displastyle{
,在数学之后添加}
。您应该将此脚本放在加载MathJax.js
的脚本之前。This issue was discussed on the MathJax user's forum. You could try something like
to add
\displastyle{
before and}
after the mathematics. You should put this script before the script that loadsMathJax.js
.如果您的所有元素都在一个父元素中,您也许可以尝试以下操作:
它对我有用。
If all your elements are in one parent element, you maybe could try this:
It worked for me.