Open samimaattaCelia opened 5 months ago
Does it make a difference for a blind person? If it is one way or the other? Of course, they should use it correctly.
As we discussed in the meeting, this might be a case of proper markup vs. effort put into achieve this.
Do we think that requiring
Same with matrices:
Code with <mrow>
:
<math>
<mfrac>
<mi>A</mi>
<mn>2</mn>
</mfrac>
<mo>=</mo>
<mrow>
<mo>(</mo>
<mtable>
<mtr>
<mtd><mn>1</mn></mtd>
<mtd><mn>2</mn></mtd>
<mtd><mn>3</mn></mtd>
</mtr>
<mtr>
<mtd><mn>4</mn></mtd>
<mtd><mn>5</mn></mtd>
<mtd><mn>6</mn></mtd>
</mtr>
<mtr>
<mtd><mn>7</mn></mtd>
<mtd><mn>8</mn></mtd>
<mtd><mn>9</mn></mtd>
</mtr>
</mtable>
<mo>)</mo>
</mrow>
</math>
<mrow>
is the element, which causes the parentheses (or other similar) to stretch to encompass the whole expression when needed.Example of the rendering of the binomial when
<mrow>
is used correctly and below when it's not used at all: