|
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>mo: form</td> |
|
19 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
20 <mstyle> |
|
21 <mrow> |
|
22 <!-- We assume that the infix/postfix forms of _ do --> |
|
23 <!-- not have the same lspace/rspace values in the operator dictionary --> |
|
24 <mtext>_</mtext> |
|
25 <mo>_</mo> |
|
26 <mtext>_</mtext> |
|
27 </mrow> |
|
28 </mstyle> |
|
29 </math></td> |
|
30 </tr> |
|
31 <tr> |
|
32 <td>mo: lspace, rspace</td> |
|
33 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
34 <mstyle> |
|
35 <mrow> |
|
36 <!-- We assume that the infix form of _ has --> |
|
37 <!-- nonzero lspace/rspace values in the operator dictionary --> |
|
38 <mtext>_</mtext> |
|
39 <mo>_</mo> |
|
40 <mtext>_</mtext> |
|
41 </mrow> |
|
42 </mstyle> |
|
43 </math></td> |
|
44 </tr> |
|
45 <tr> |
|
46 <td>mo: stretchy</td> |
|
47 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
48 <mstyle> |
|
49 <mover> |
|
50 <!-- We assume that the arrow has stretchy=true in the operator dictionary --> |
|
51 <mtext>abcd</mtext> |
|
52 <mo>→</mo> |
|
53 </mover> |
|
54 </mstyle> |
|
55 </math></td> |
|
56 </tr> |
|
57 <tr> |
|
58 <td>mo: accent</td> |
|
59 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
60 <mstyle> |
|
61 <mover> |
|
62 <!-- We assume ⏞ has accent=true in the operator dictionary --> |
|
63 <mrow> |
|
64 <mi>x</mi> |
|
65 <mo>+</mo> |
|
66 <mi>y</mi> |
|
67 <mo>+</mo> |
|
68 <mi>z</mi> |
|
69 </mrow> |
|
70 <mo>⏞</mo> |
|
71 </mover> |
|
72 </mstyle> |
|
73 </math></td> |
|
74 </tr> |
|
75 <tr> |
|
76 <td>mo: maxsize</td> |
|
77 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
78 <mstyle> |
|
79 <mo>(</mo> |
|
80 <mspace height="3em"/> |
|
81 </mstyle> |
|
82 </math></td> |
|
83 </tr> |
|
84 <tr> |
|
85 <td>mo: minsize</td> |
|
86 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
87 <mstyle> |
|
88 <mo>(</mo> |
|
89 <mspace height="1em"/> |
|
90 </mstyle> |
|
91 </math></td> |
|
92 </tr> |
|
93 <tr> |
|
94 <td>mo: symmetric</td> |
|
95 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
96 <!-- We assume that ( has symmetric=true in the operator dictionary --> |
|
97 <mstyle> |
|
98 <mtext>_</mtext> |
|
99 <mo minsize="2">(</mo> |
|
100 <mtext>_</mtext> |
|
101 </mstyle> |
|
102 </math></td> |
|
103 </tr> |
|
104 <tr> |
|
105 <td>mo: movablelimits</td> |
|
106 <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
|
107 <!-- We assume that ∑ has movablelimits=true in the operator dictionary --> |
|
108 <mstyle> |
|
109 <munderover> |
|
110 <mo>∑</mo> |
|
111 <mi>a</mi> |
|
112 <mi>b</mi> |
|
113 </munderover> |
|
114 </mstyle> |
|
115 </math></td> |
|
116 </tr> |
|
117 <tr> |
|
118 <td>mo: largeop</td> |
|
119 <td><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> |
|
120 <!-- We assume that ∑ has largeop=true in the operator dictionary --> |
|
121 <mstyle> |
|
122 <mo>∑</mo> |
|
123 </mstyle> |
|
124 </math></td> |
|
125 </tr> |
|
126 <!-- |
|
127 fence: This attribute generally has no direct effect on the visual rendering. |
|
128 separator: This attribute generally has no direct effect on the visual rendering. |
|
129 --> |
|
130 </tbody> |
|
131 </table> |
|
132 </body> |
|
133 </html> |