scriptlevel

Das scriptlevel-globale Attribut setzt die math-depth eines MathML-Elements. Es ermöglicht das Überschreiben von Regeln aus dem Benutzeragent-Stylesheet, die die automatische Berechnung der font-size innerhalb von MathML-Formeln definieren.

Beispiel

html
<!-- math-depth defaults to 0 on the <math> root. -->
<math style="font-size: 64pt">
  <msubsup>
    <!-- math-depth and font-size remain unchanged on the base. -->
    <mtext>BASE</mtext>
    <!-- math-depth defaults to add(1) within the subscript, so it
         is incremented by 1 and the font-size is scaled down once. -->
    <mtext>SUBSCRIPT</mtext>
    <!-- math-depth defaults to add(1) within the superscript too, but
         the scriptlevel attribute tells to increment it by 2 instead,
         so the font-size is actually scaled down twice. -->
    <mtext scriptlevel="+2">SUPERSCRIPT</mtext>
  </msubsup>
</math>

Syntax

html
<math scriptlevel="-1"> <!-- decrease math-depth by 1 -->
<math scriptlevel="+2"> <!-- increase math-depth by 2 -->
<math scriptlevel="0"> <!-- reset math-depth to 0 -->

Werte

Wenn <U> eine vorzeichenlose Ganzzahl ist (d. h. ohne Vorzeichen), dann sind die akzeptierten Werte:

<U>

Setzt die math-depth auf den Wert <U>. Dies setzt die font-size des Elements auf denselben Wert wie die Elemente in der angegebenen Tiefe.

+<U>

Setzt die math-depth auf den Wert add(<U>). Dies wird die font-size des Elements <U>-mal verkleinern.

-<U>

Setzt die math-depth auf den Wert add(-<U>). Dies wird die font-size des Elements <U>-mal vergrößern.

Spezifikationen

Specification
MathML Core
# dfn-scriptlevel

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch