displaystyle

displaystyle 全局属性 是一个布尔值,用于设置 MathML 元素的 math-style

示例

在此示例中,使用 munder 元素将脚本“A”附加到基数“∑”。默认情况下,求和符号以从其父级继承的 font-size 呈现,而 A 则作为缩小的下标呈现。使用显式 displaystyle="true" 属性,求和符号将以更大的尺寸绘制,而“A”将成为下标。

html
<math>
  <munder>
    <mo></mo>
    <mi>A</mi>
  </munder>
  <munder displaystyle="true">
    <mo></mo>
    <mi>A</mi>
  </munder>
</math>

语法

html
<math displaystyle="true"></math>
<math displaystyle="false"></math>

true

将显示样式设置为 normal

false

将显示样式设置为 compact

规范

规范
MathML 核心
# dfn-displaystyle

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅