|
1 <?xml version="1.0" encoding="us-ascii"?> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 <head> |
|
4 <meta http-equiv="content-type" |
|
5 content="application/xhtml+xml; charset=us-ascii" /> |
|
6 <title>Test mstyle</title> |
|
7 <style type="text/css"> |
|
8 table { width: 100%; border-collapse: collapse; } |
|
9 td { border: solid black 1px; } |
|
10 </style> |
|
11 </head> |
|
12 |
|
13 <body> |
|
14 |
|
15 <table> |
|
16 <tbody> |
|
17 <tr> |
|
18 <td>mover: accent</td> |
|
19 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
20 <mstyle> |
|
21 <mover> |
|
22 <!-- We assume ⏞ is accent in the operator dictionary --> |
|
23 <mrow> |
|
24 <mi>x</mi> |
|
25 <mo>+</mo> |
|
26 <mi>y</mi> |
|
27 <mo>+</mo> |
|
28 <mi>z</mi> |
|
29 </mrow> |
|
30 <mo>⏞</mo> |
|
31 </mover> |
|
32 </mstyle> |
|
33 </math></td> |
|
34 </tr> |
|
35 <tr> |
|
36 <td>munder: accentunder</td> |
|
37 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
38 <mstyle> |
|
39 <munder> |
|
40 <!-- We assume ⏟ is accent in the operator dictionary --> |
|
41 <mrow> |
|
42 <mi>x</mi> |
|
43 <mo>+</mo> |
|
44 <mi>y</mi> |
|
45 <mo>+</mo> |
|
46 <mi>z</mi> |
|
47 </mrow> |
|
48 <mo>⏟</mo> |
|
49 </munder> |
|
50 </mstyle> |
|
51 </math></td> |
|
52 </tr> |
|
53 <tr> |
|
54 <td>munderover: accent, accentunder</td> |
|
55 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
56 <mstyle> |
|
57 <munderover> |
|
58 <!-- We assume ⏞ and ⏟ are accents in the operator dictionary --> |
|
59 <mrow> |
|
60 <mi>x</mi> |
|
61 <mo>+</mo> |
|
62 <mi>y</mi> |
|
63 <mo>+</mo> |
|
64 <mi>z</mi> |
|
65 </mrow> |
|
66 <mo>⏟</mo> |
|
67 <mo>⏞</mo> |
|
68 </munderover> |
|
69 </mstyle> |
|
70 </math></td> |
|
71 </tr> |
|
72 </tbody> |
|
73 </table> |
|
74 </body> |
|
75 </html> |