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 表格僅在瀏覽器中載入

另請參閱