This CNXML:
<table id="tictactoe" summary="A 3 by 3 table
representing a completed game of tic tac toe
in which neither player has won.">
<title>A game of tic-tac-toe</title>
<tgroup cols="3">
<tbody>
<row>
<entry>x</entry>
<entry>o</entry>
<entry>x</entry>
</row>
<row>
<entry>o</entry>
<entry>x</entry>
<entry>o</entry>
</row>
<row>
<entry>o</entry>
<entry>x</entry>
<entry>o</entry>
</row>
</tbody>
</tgroup>
</table>
Results in this display:
| x | o | x |
| o | x | o |
| o | x | o |