168 lines
6.5 KiB
HTML
168 lines
6.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>displaystyle</title>
|
|
<meta charset="utf-8">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#the-displaystyle-and-scriptlevel-attributes">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#style-change-mstyle">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#fractions-mfrac">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#radicals-msqrt-mroot">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#subscripts-and-superscripts-msub-msup-msubsup">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#prescripts-and-tensor-indices-mmultiscripts">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#table-or-matrix-mtable">
|
|
<link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo">
|
|
<link rel="match" href="displaystyle-011-ref.html"/>
|
|
<meta name="assert" content="Test the effect on displaystyle and movablelimits">
|
|
<link rel="stylesheet" href="/fonts/ahem.css">
|
|
<style>
|
|
math {
|
|
font: 25px Ahem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Test displaystyle on mstyle -->
|
|
<math>
|
|
<mstyle displaystyle="true">
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mstyle>
|
|
<mstyle displaystyle="false">
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<!-- The mfrac element sets displaystyle to "false", or if it was already
|
|
false increments scriptlevel by 1, within numerator and denominator.
|
|
-->
|
|
<math>
|
|
<mstyle displaystyle="true">
|
|
<mfrac>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mfrac>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<!-- The mroot element increments scriptlevel by 2, and sets
|
|
displaystyle to "false", within index, but leaves both attributes
|
|
unchanged within base.
|
|
The msqrt element leaves both attributes unchanged within its
|
|
argument. -->
|
|
<math>
|
|
<mstyle displaystyle="true">
|
|
<mroot>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mroot>
|
|
<msqrt>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</msqrt>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<!--
|
|
The msub element [...] increments scriptlevel by 1, and sets displaystyle to
|
|
"false", within subscript, but leaves both attributes unchanged within base.
|
|
|
|
The msup element [...] increments scriptlevel by 1, and sets displaystyle to
|
|
"false", within superscript, but leaves both attributes unchanged within
|
|
base.
|
|
|
|
The msubsup element [...] increments scriptlevel by 1, and sets displaystyle
|
|
to "false", within subscript and superscript, but leaves both attributes
|
|
unchanged within base.
|
|
|
|
The mmultiscripts element increments scriptlevel by 1, and sets displaystyle
|
|
to "false", within each of its arguments except base, but leaves both
|
|
attributes unchanged within base.
|
|
-->
|
|
<math>
|
|
<mstyle displaystyle="true">
|
|
<msub>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</msub>
|
|
<msup>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</msup>
|
|
<msubsup>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</msubsup>
|
|
<mmultiscripts>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<mprescripts/>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mmultiscripts>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<!--
|
|
The munder element [...] always sets displaystyle to "false" within the
|
|
underscript, but increments scriptlevel by 1 only when accentunder is
|
|
"false". Within base, it always leaves both attributes unchanged.
|
|
|
|
The mover element [...] always sets displaystyle to "false" within
|
|
overscript, but increments scriptlevel by 1 only when accent is "false".
|
|
Within base, it always leaves both attributes unchanged.
|
|
|
|
The munderover [..] always sets displaystyle to "false" within underscript
|
|
and overscript, but increments scriptlevel by 1 only when accentunder or
|
|
accent, respectively, are "false". Within base, it always leaves both
|
|
attributes unchanged.
|
|
-->
|
|
<math>
|
|
<mstyle displaystyle="true">
|
|
<munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</munder>
|
|
<mover>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mover>
|
|
<munderover>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</munderover>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<!--
|
|
The displaystyle attribute is allowed on the mtable element to set the
|
|
inherited value of the attribute. If the attribute is not present, the
|
|
mtable element sets displaystyle to "false" within the table elements.
|
|
-->
|
|
<math>
|
|
<mstyle displaystyle="false">
|
|
<mtable displaystyle="true">
|
|
<mtr>
|
|
<mtd>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mtd>
|
|
</mtr>
|
|
</mtable>
|
|
</mstyle>
|
|
<mstyle displaystyle="true">
|
|
<mtable>
|
|
<mtr>
|
|
<mtd>
|
|
<munder><mo movablelimits="true">O</mo><mo>O</mo></munder>
|
|
</mtd>
|
|
</mtr>
|
|
</mtable>
|
|
</mstyle>
|
|
</math>
|
|
|
|
<script src="/mathml/support/feature-detection.js"></script>
|
|
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_movablelimits");</script>
|
|
</body>
|
|
</html>
|