File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1479,6 +1479,30 @@ Please refer to a [Unicode character table](https://symbl.cc/en/unicode-table/).
14791479
14801480Some country-specific mathematical notation should be taken into account in the MathML markup.
14811481
1482+ #### Coordinates
1483+
1484+ The coordinate (1, 2) should be marked up as follows:
1485+
1486+ ``` html
1487+ <math >
1488+ <mo >(</mo ><mn >1</mn ><mo >,</mo ><mn >2</mn ><mo >)</mo >
1489+ </math >
1490+ ```
1491+
1492+ The coordinate (1,1, 2) should be marked up as follows:
1493+
1494+ ``` html
1495+ <math >
1496+ <mo >(</mo ><mn >1,1</mn ><mo >,</mo ><mn >2</mn ><mo >)</mo >
1497+ </math >
1498+ ```
1499+
1500+ ** Note:** Notice the difference between the two examples:
1501+ - The first example has x-coordinate 1 and y-coordinate 2.
1502+ - The second example has x-coordinate 1,1 and y-coordinate 2.
1503+
1504+ It is imporant to separate comma as a decimal separator and comma as an operator.
1505+
14821506#### Multiplication and division of fractions
14831507
14841508This notation means that the numerator and the denominator are multiplied by the same number:
You can’t perform that action at this time.
0 commit comments