blob: f3ef2e53bab8bbc5a7a6772a0baf595d5024f249 (
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
25
|
<!DOCTYPE html>
<html>
<head><title>Test accent/accentunder</title></head>
<body>
<math displaystyle="false">
<munderover accentunder="true" accent="true">
<mo>∑</mo>
<mi>a</mi>
<mi>b</mi>
</munderover>
</math>
<math displaystyle="false">
<munder accentunder="true">
<mo>∑</mo>
<mi>a</mi>
</munder>
</math>
<math displaystyle="false">
<mover accent="true">
<mo>∑</mo>
<mi>a</mi>
</mover>
</math>
</body>
</html>
|