Am 12.06.2012 um 17:12 schrieb Procházka Lukáš Ing. - Pontex s. r. o.:

> Hello,
> 
> I'd need to create table with a head and a body, and with horizontal lines 
> between rows disabled, excluding the head.
> 
> Something like (ASCII art trial):
> 
> +------+------+
> | Head | Head |
> +------+------+   <- Line here bellow the head is wanted (and can be thicker 
> than the outer lines)...
> | 11   | 12   |
> |      |      |   <- ... but no horizontal line between body's rows.
> | 21   | 22   |
> +------+------+
> 
> I played with *frame settings (guided by wiki), but no success.
> 
> My trial code:
> 
> ----
> \starttext
>  
> \bTABLE[split=repeat,option=stretch,align=middle,frame=off,leftframe=on,rightframe=on]
>    \bTABLEhead[bottomframe=on]
>      \bTR\bTD Head \eTD\eTR
>      \bTR\bTD Head \eTD\eTR
>    \eTABLEhead
>    \bTABLEbody
>      \bTR\bTD 11\eTD\bTD 12\eTD\eTR
>      \bTR\bTD 21\eTD\bTD 22\eTD\eTR
>    \eTABLEbody
>  \eTABLE
> \stoptext
> ----
> 
> How to specify rules (frame) to get the desired look?

\starttext

\setupTABLE[start][frame=off,leftframe=on,rightframe=on]
\setupTABLE[header][frame=on]
\setupTABLE[row][first][topframe=on]
\setupTABLE[row][last][bottomframe=on]


\bTABLE[split=repeat,option=stretch]
  \bTABLEhead
    \bTR\bTD Head \eTD\bTD Head \eTD\eTR
  \eTABLEhead
  \bTABLEbody
    \bTR\bTD 11\eTD\bTD 12\eTD\eTR
    \bTR\bTD 21\eTD\bTD 22\eTD\eTR
  \eTABLEbody
\eTABLE

\stoptext

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to