blob: d9a80d8da4ff5fc7a0707e33d262f2c18a3a43ec (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html>
<head><title>Test direction: rtl</title></head>
<body>
<p>
math:
<math style="direction: rtl">
<mi>a</mi>
<mi>b</mi>
<mi>c</mi>
</math>
</p>
<p>
mrow:
<math>
<mrow style="direction: rtl">
<mi>z</mi>
<mtext>X</mtext>
<mtext>Y</mtext>
<mtext>Z</mtext>
<mi>a</mi>
</mrow>
</math>
</p>
<p>
mstyle(mathcolor=blue):
<math>
<mstyle mathcolor="blue" style="direction: rtl">
<mi>a</mi>
<mo>+</mo>
<mn>3</mo>
<mo>+</mo>
<mn>9</mn>
</mstyle>
</math>
</p>
</body>
</html>
|