blob: bbffa910ab7167007bc601c2569b798634893fcc (
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>
<mo>∑</mo>
<mi>a</mi>
<mi>b</mi>
</munderover>
</math>
<math displaystyle="false">
<munder>
<mo>∑</mo>
<mi>a</mi>
</munder>
</math>
<math displaystyle="false">
<mover>
<mo>∑</mo>
<mi>a</mi>
</mover>
</math>
</body>
</html>
|