Mit ConTeXt MKIV und Natural Tables:
\starttext
\setupTABLE[each][each][align={middle,lohi},width=broad]
\setupTABLE[row][first][style=bold]
\startTABLE
\NC TV \NC Personalcomputer \NC Phone \NC PS4 \NC Radio \NC\NR
\NC Sony \NC LG \NC -- \NC -- \NC -- \NC\NR
\NC Dinosaurierfernseher \NC ha \NC ha \NC ha \NC ha \NC\NR
\stopTABLE
\stoptext
![alt text][1]
---
Mit extrem wenig Arbeit kann man die Tabelle auch als [CSV (comma separated values)](https://de.wikipedia.org/wiki/CSV_(Dateiformat)) schreiben.
\usemodule [database]
\defineseparatedlist
[TVcomparison]
[before=\startTABLE,after=\stopTABLE,
left=\NC,last=\NC\NR,
setups=table:television]
\startsetups table:television
\setupTABLE[each][each][align={middle,lohi},width=broad]
\setupTABLE[row][first][style=bold]
\stopsetups
\starttext
\startTVcomparison
TV, TV , Personalcomputer, Phone, PS4, Radio
Sony, LG, --, --, Sony , LG , -- , -- , --
Dinosaurierfernseher, ha, ha, ha, ha , ha , ha , ha
\stopTVcomparison
\stoptext
[1]: http://texwelt.de/wissen/upfiles/test_219.png