MathML 标签:"stretchy" 属性问题

MathML tag: "stretchy" attribute issue

我想知道,在下面的示例中,为什么 mo 标记的 stretchy 属性会给出类似的显示。我认为下面的第二个MathML<mo stretchy="false">∑</mo>会在求和符号的顶部和底部显示上下限(如下图2所示)。但是两个例子(<mo stretchy="true">∑</mo><mo stretchy="false">∑</mo> 分别)显示求和符号两侧的限制:

备注: 我用的是MathJax

HTML 与 MathML

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title>MathJax TeX to MathML Page</title>
    <script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
    </script>
</head>
<body>
    <p>With stretchy="true"</p>
    <math xmlns="http://www.w3.org/1998/Math/MathML"><mrow><msubsup><mo stretchy="true">∑</mo><mrow><mi>k</mi><mo>=</mo><mn>0</mn></mrow><mrow><mi>n</mi></mrow></msubsup><mrow><mfenced separators="|"><mrow><mfrac linethickness="0pt"><mrow><mi>n</mi></mrow><mrow><mi>k</mi></mrow></mfrac></mrow></mfenced><msup><mrow><mi>x</mi></mrow><mrow><mi>k</mi></mrow></msup><msup><mrow><mi>a</mi></mrow><mrow><mi>n</mi><mo>-</mo><mi>k</mi></mrow></msup></mrow></mrow></math>
    <p>With stretchy="false"</p>
    <math xmlns="http://www.w3.org/1998/Math/MathML"><mrow><munderover><mo stretchy="false">∑</mo><mrow><mi>k</mi><mo>=</mo><mn>0</mn></mrow><mrow><mi>n</mi></mrow></munderover><mrow><msup><mrow><mi>r</mi></mrow><mrow><mi>k</mi></mrow></msup></mrow></mrow></math>
</body>
</html>

上面的显示HTML [using MathJax]:

希望显示第二个 MathML<mo stretchy="false">∑</mo>):

您使用了错误的属性。您想要的不是 strethy="false",而是 movablelimits="false"(或在表达式周围使用 <math display="block"><mstyle displaystyle="true">)。

例如:

<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/mml-chtml.js"></script>

<p>
<b>movablelimits="false"</b>
<br>

<math xmlns="http://www.w3.org/1998/Math/MathML">
  <munderover>
    <mo movablelimits="false">∑</mo>
    <mrow>
      <mi>k</mi>
      <mo>=</mo>
      <mn>0</mn>
    </mrow>
    <mi>n</mi>
  </munderover>
  <msup>
    <mi>r</mi>
    <mi>k</mi>
  </msup>
</math>

</p><p>

<b>display="block"</b>
<br>

<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
  <munderover>
    <mo>∑</mo>
    <mrow>
      <mi>k</mi>
      <mo>=</mo>
      <mn>0</mn>
    </mrow>
    <mi>n</mi>
  </munderover>
  <msup>
    <mi>r</mi>
    <mi>k</mi>
  </msup>
</math>

</p><p>

<b>mstyle displaystyle="true"</b>
<br>

<math xmlns="http://www.w3.org/1998/Math/MathML">
  <mstyle displaystyle="true">
  <munderover>
    <mo>∑</mo>
    <mrow>
      <mi>k</mi>
      <mo>=</mo>
      <mn>0</mn>
    </mrow>
    <mi>n</mi>
  </munderover>
  <msup>
    <mi>r</mi>
    <mi>k</mi>
  </msup>
  </mstyle>
</math>

</p>

但是请注意,它们会生成不同的输出。第一个使用较小的求和符号(因为它是行内数学样式),第二个使用单独的行,数学居中,第三个是行内的,但使用显示模式布局规则。