7.1 Background

All columns explicitly require identical number of columns.

Broken:

<math:mtable >  
  <math:mtr>  
    <math:mtd columnalign="left"><math:mn>1</math:mn></math:mtd>  
    <math:mtd columnalign="left"><math:mn>2</math:mn></math:mtd>  
  </math:mtr>  
  <math:mtr>  
    <math:mtd columnalign="left"><math:mn>1</math:mn></math:mtd>  
  </math:mtr>  
</math:mtable>

Works:

<math:mtable >  
  <math:mtr>  
    <math:mtd columnalign="left"><math:mn>1</math:mn></math:mtd>  
    <math:mtd columnalign="left"><math:mn>2</math:mn></math:mtd>  
  </math:mtr>  
  <math:mtr>  
    <math:mtd columnalign="left"><math:mn>1</math:mn></math:mtd>  
    <math:mtd columnalign="left"></math:mtd>  
  </math:mtr>  
</math:mtable>

The last \\ produces extra line with single entry and no data.

$  
\begin{cases}  
    1 & 2\\  
    3 & 4\\  
\end{cases}  
$

Singlton mspace breaks math tables:

<math:mtable>  
  <math:mtr>  
      <math:mtd><math:mn>1</math:mn></math:mtd>  
      <math:mtd><math:mspace width="1em"/></math:mtd>  
  </math:mtr>  
</math:mtable>