|
1 <!doctype html> |
|
2 <html> |
|
3 <head> |
|
4 <title>displaystyle</title> |
|
5 <meta charset="utf-8"/> |
|
6 </head> |
|
7 <body> |
|
8 |
|
9 <!-- Test the effect of displaystyle on munder, mover and munderover --> |
|
10 <math> |
|
11 <mstyle displaystyle="true"> |
|
12 <munder><mo>O</mo><mo>O</mo></munder> |
|
13 <mover><mo>O</mo><mo>O</mo></mover> |
|
14 <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover> |
|
15 </mstyle> |
|
16 <mstyle displaystyle="false"> |
|
17 <msub><mo>O</mo><mo>O</mo></msub> |
|
18 <msup><mo>O</mo><mo>O</mo></msup> |
|
19 <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup> |
|
20 </mstyle> |
|
21 </math> |
|
22 |
|
23 </body> |
|
24 </html> |