1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
<!DOCTYPE html>
<html>
<head>
<title>displaystyle</title>
<meta charset="utf-8">
<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>O</mo><mo>O</mo></munder>
</mstyle>
<mstyle displaystyle="false">
<msub><mo>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>
<msub><mo>O</mo><mo>O</mo></msub>
<msub><mo>O</mo><mo>O</mo></msub>
</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>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
</mroot>
<msqrt>
<munder><mo>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>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
</msub>
<msup>
<munder><mo>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
</msup>
<msubsup>
<munder><mo>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
<msub><mo>O</mo><mo>O</mo></msub>
</msubsup>
<mmultiscripts>
<munder><mo>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
<msub><mo>O</mo><mo>O</mo></msub>
<mprescripts/>
<msub><mo>O</mo><mo>O</mo></msub>
<msub><mo>O</mo><mo>O</mo></msub>
</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>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
</munder>
<mover>
<munder><mo>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
</mover>
<munderover>
<munder><mo>O</mo><mo>O</mo></munder>
<msub><mo>O</mo><mo>O</mo></msub>
<msub><mo>O</mo><mo>O</mo></msub>
</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>O</mo><mo>O</mo></munder>
</mtd>
</mtr>
</mtable>
</mstyle>
<mstyle displaystyle="true">
<mtable>
<mtr>
<mtd>
<msub><mo>O</mo><mo>O</mo></msub>
</mtd>
</mtr>
</mtable>
</mstyle>
</math>
</body>
</html>
|