使用 MathJax 渲染时如何在数学之前和之后放置一些 html

发布于 2024-12-19 06:25:55 字数 162 浏览 1 评论 0原文

我在我的网站中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自由如风 2024-12-26 06:25:55

MathJax 用户论坛讨论了此问题。您可以尝试

<script type="text/x-mathjax-config">
MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
  var TEX = MathJax.InputJax.TeX;
  var PREFILTER = TEX.prefilterMath;
  TEX.Augment({
    prefilterMath: function (math,displaymode,script) {
      math = "\\displaystyle{"+math+"}";
      return PREFILTER.call(TEX,math,displaymode,script);
    }
  });
});
</script>

在数学之前添加 \displastyle{ ,在数学之后添加 } 。您应该将此脚本放在加载 MathJax.js 的脚本之前。

This issue was discussed on the MathJax user's forum. You could try something like

<script type="text/x-mathjax-config">
MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
  var TEX = MathJax.InputJax.TeX;
  var PREFILTER = TEX.prefilterMath;
  TEX.Augment({
    prefilterMath: function (math,displaymode,script) {
      math = "\\displaystyle{"+math+"}";
      return PREFILTER.call(TEX,math,displaymode,script);
    }
  });
});
</script>

to add \displastyle{ before and } after the mathematics. You should put this script before the script that loads MathJax.js.

愿与i 2024-12-26 06:25:55

如果您的所有元素都在一个父元素中,您也许可以尝试以下操作:

parent_element * {
width: auto;
}

它对我有用。

If all your elements are in one parent element, you maybe could try this:

parent_element * {
width: auto;
}

It worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文