Skip to content

Commit 70a3b4c

Browse files
Added section about coordinates
1 parent 84ede69 commit 70a3b4c

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Nordic MathML Guidelines.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1479,6 +1479,30 @@ Please refer to a [Unicode character table](https://symbl.cc/en/unicode-table/).
14791479

14801480
Some 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

14841508
This notation means that the numerator and the denominator are multiplied by the same number:

0 commit comments

Comments
 (0)