【发布时间】:2019-11-15 08:59:15
【问题描述】:
我有两个用最新版本的 Mathjax 用 Markdown 编写的方程(如下所示)。 (仅供参考:这些是针对我正在使用Jekyll 制作的博客。)当我将它们放在单独的段落中时,它们呈现得很好,但是当它们在同一个段落中时,它们不能正确呈现。
First equation is here \\(\mathbf{I}_n\\).
The next equation is here \\(D_j\\). More text.
First equation is here \\(\mathbf{I}_n\\). The next equation is here \\(D_j\\). More text.
问题似乎在于“I”是粗体或在下标中。当我删除代码中围绕“I”的\mathbf 时,两个方程都在同一段中,代码按预期呈现:
当我删除“I”或“D”上的下标时,它也会正确呈现:
为什么会发生这种情况,我该如何解决?
【问题讨论】:
标签: markdown jekyll equation mathjax