最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why doesn't \ display a newline in mathjax? - Stack Overflow

programmeradmin1浏览0评论

I am under the impression that you should use \\ for newlines with mathjax, however I can't get it to work. What am I doing wrong here?

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
<script id="MathJax-script" async src="@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<p><span class="math display">\[
    1 x x^2 \\
    1 y y^2 \\
    1 z z^2 \\
\]</span></p>
</div>
</body>
</html>

I am under the impression that you should use \\ for newlines with mathjax, however I can't get it to work. What am I doing wrong here?

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
<script id="MathJax-script" async src="https://cdn.jsdelivr/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<p><span class="math display">\[
    1 x x^2 \\
    1 y y^2 \\
    1 z z^2 \\
\]</span></p>
</div>
</body>
</html>

I expect to see 3 lines, but I get this:

Other stackoverflow posts claim that \\ should work, eg: https://math.meta.stackexchange./questions/11720/new-line-within-mathjax

Share Improve this question edited Jun 26, 2020 at 4:24 10 Rep 2,2707 gold badges21 silver badges33 bronze badges asked Jun 25, 2020 at 19:59 ocstatocstat 3594 silver badges8 bronze badges 1
  • 3 This is a regression in v3 github./mathjax/MathJax/issues/2312 – Peter Krautzberger Commented Jun 26, 2020 at 5:28
Add a ment  | 

4 Answers 4

Reset to default 7

Apparently \\ is not implemented (yet) in version 3, but you can use \displaylines instead:

\displaylines{ first line \\ second line }

As pointed out the in the above ment, this doesn't work in mathjax 3.0.

As a work around, I found the following markdown correctly transforms to HTML with pandoc:

you can use this:

\begin{equation}
\displaylines{I = \int \rho R^{2} dV \\ Y = 1}
\end{equation}

or alternatively an align block, e.g:

$$
\begin{alignat}{2}
I & = \int \rho R^{2} dV & + P \\
Y & = 1 & + x
\end{alignat}
$$

with: pandoc --from=markdown --to=html5 --mathjax="https://cdn.jsdelivr/npm/mathjax@3/es5/tex-mml-chtml.js" -s file.md -o file.html

@stevenvh solution worked, but I needed them aligned to the left. To do this I found

\begin{align}
& ...expression... \\
& ...expression... \\ 
\end{align}

to be working.

You should use HTML to break lines as MathJax only handles math mode and does not process the backslashes:

<p>
    <span class="math display">
        \(1 x x^2 \)</br>
        \(1 y y^2 \)</br>
        \(1 z z ^2 \)</br>
    </span>
</p>
发布评论

评论列表(0)

  1. 暂无评论