packages feed

texmath-0.12.6: test/writer/mml/mtableAwidth3.test

<<< native
[ EArray
    [ AlignCenter , AlignCenter ]
    [ [ [ ENumber "1" ] , [ ENumber "2" ] ]
    , [ [ EIdentifier "x" ] , [ EIdentifier "y" ] ]
    ]
]
>>> mml
<?xml version='1.0' ?>
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
  <mtable>
    <mtr>
      <mtd columnalign="center" style="text-align: center">
        <mn>1</mn>
      </mtd>
      <mtd columnalign="center" style="text-align: center">
        <mn>2</mn>
      </mtd>
    </mtr>
    <mtr>
      <mtd columnalign="center" style="text-align: center">
        <mi>x</mi>
      </mtd>
      <mtd columnalign="center" style="text-align: center">
        <mi>y</mi>
      </mtd>
    </mtr>
  </mtable>
</math>