|
1 <!doctype html> |
|
2 <html> |
|
3 <head> |
|
4 <title>More mathvariant tests</title> |
|
5 </head> |
|
6 <body> |
|
7 <math> |
|
8 <mrow> |
|
9 <!-- mathvariant on characters that are already in the Mathematical |
|
10 AlphanumericSymbols or are exceptions (should not have any |
|
11 effect).--> |
|
12 <mtext>𝒜</mtext> |
|
13 <mtext>ℬ</mtext> |
|
14 <!-- mathvariant on characters for which there is no equivalent mathvariant |
|
15 form in Unicode (should not have any effect) --> |
|
16 <mtext>á</mtext> |
|
17 </mrow> |
|
18 </math> |
|
19 |
|
20 <p> |
|
21 |
|
22 <math> |
|
23 <mrow> |
|
24 <!-- mathvariant on multi-char token elements (should apply to all the |
|
25 characters) --> |
|
26 <mtext>𝙰𝙰𝙰</mtext> |
|
27 </mrow> |
|
28 </math> |
|
29 |
|
30 <p> |
|
31 |
|
32 <math> |
|
33 <mrow> |
|
34 <!-- mathvariant on mstyle (should apply to all token element descendants |
|
35 like single-char mi, mtext etc) --> |
|
36 <mtext mathvariant="sans-serif">cos</mtext> |
|
37 <mo>⁡</mo> |
|
38 <mi mathvariant="sans-serif">x</mi> |
|
39 </mrow> |
|
40 </math> |
|
41 |
|
42 <p> |
|
43 |
|
44 <math> |
|
45 <mrow> |
|
46 <!-- mathvariant on math (should apply to all token element descendants |
|
47 like single-char mi, mtext etc) --> |
|
48 <mtext mathvariant="sans-serif">cos</mtext> |
|
49 <mo>⁡</mo> |
|
50 <mi mathvariant="sans-serif">x</mi> |
|
51 </mrow> |
|
52 </math> |
|
53 |
|
54 </body> |
|
55 </html> |