Re: [NTG-context] Natural tables, rulethickness

2006-03-05 Thread Berend de Boer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Patrick Gundlach [EMAIL PROTECTED] writes: but I wish (feature request) something like \toprule \bTR \eTR \midrule \bTR \eTR \bTR \eTR \bTR \eTR \bottomrule or together with \setupTABLE. Something like:

[NTG-context] Natural tables, rulethickness

2006-03-04 Thread Patrick Gundlach
Hello, I have a (natural) table and I'd like to have three rules in that table. The toprule and the bottomrule should be .08em thick, the midrule 0.05em. What would be a way to achieve that? The example is incorrect. \starttext \setupTABLE[r][each][frame=off]

Re: [NTG-context] Natural tables, rulethickness

2006-03-04 Thread Peter Rolf
Hi Patrick, Patrick Gundlach wrote: Hello, I have a (natural) table and I'd like to have three rules in that table. The toprule and the bottomrule should be .08em thick, the midrule 0.05em. What would be a way to achieve that? The example is incorrect. \starttext

Re: [NTG-context] Natural tables, rulethickness

2006-03-04 Thread Peter Münster
On Sat, 4 Mar 2006, Patrick Gundlach wrote: \setupTABLE[r][first][bottomframe=on,rulethickness=.05em] Replace this line by \setupTABLE[r][2][bottomframe=on,rulethickness=.05em,height=0pt,offset=overlay] \bTABLE \bTR \bTD Lorem \eTD \bTD ipsum \eTD \bTD dolor sit \eTD \eTR and add here

Re: [NTG-context] Natural tables, rulethickness

2006-03-04 Thread Peter Münster
On Sat, 4 Mar 2006, Peter Rolf wrote: \setupTABLE[r][2][topframe=on,rulethickness=.05em] Hello Patrick, I've just seen Peter Rolf's solution, this is of course the better and simpler one. The only case, where my empty row can be useful, is, when you have just 2 rows: \starttext

Re: [NTG-context] Natural tables, rulethickness

2006-03-04 Thread Patrick Gundlach
[Three rules in a table] Thanks, Peter and Peter, the following setup produces the output I'd like to have: \setupTABLE[r][first][topframe=on,rulethickness=.08em, after={\hrule width\hsize height.05em}] \setupTABLE[r][last][bottomframe=on,rulethickness=.08em] but I wish (feature request)