On Wed, 17 Apr 2013, "H. Özoguz" wrote:
(Sorry, there were typos in the code). The offset between the top and bottom rule in each cell. Change them to something drastic like 1cm to see the affect.
\startsetups table:setups \setupTABLE[align={lohi}, loffset=1pt, boffset=3cm, align=flushleft] \stopsetups
\starttext \bTABLE[setups=table:setups] \bTR \bTD[nc=3, align=middle, style=italic] Natürliche Methoden \eTD \eTR \bTR \bTD One \eTD \bTD Two \eTD \bTD Three \eTD \eTR \eTABLE \stoptext
Aditya
Thanks, exactly what I wanted! Is it possible with this table-environment to create a table, where not all four horizontal and vertical lines are set? For example like:
\starttext \starttable[|l|c|l|]
\NC Blub1 \VL Blub2 \VL Blub3 \AR
\HL
\NC Lalala \VL Brumm \VL Boff \AR
\HL
\stoptable \stoptext
\setupTABLE[row][1][frame=off,leftframe=on,rightframe=on] \setupTABLE[column][first,last][frame=off,topframe=on,bottomframe=on] Aditya