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