displaystyle

Baseline 2023

Newly available

Since January 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

Das displaystyle globale Attribut ist ein boolescher Wert, der den math-style eines MathML-Elements festlegt.

Beispiel

In diesem Beispiel wird ein munder-Element verwendet, um ein Skript "A" an eine Basis "∑" anzuhängen. Standardmäßig wird das Summationssymbol mit der vom übergeordneten Element geerbten font-size und das "A" als verkleinertes Subskript dargestellt. Mit dem expliziten Attribut displaystyle="true" wird das Summationssymbol stattdessen größer gezeichnet und das "A" wird zu einem Unterskript.

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

Syntax

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

Werte

true

Setzt den Darstellungsstil auf normal.

false

Setzt den Darstellungsstil auf compact.

Spezifikationen

Specification
MathML Core
# dfn-displaystyle

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch