From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/13892 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: Natural Tables (all options) Date: Sun, 19 Oct 2003 21:23:39 +0200 Sender: ntg-context-admin@ntg.nl Message-ID: <6.0.0.22.2.20031019212316.01ff5248@localhost> References: Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: sea.gmane.org 1066592686 23594 80.91.224.253 (19 Oct 2003 19:44:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 19 Oct 2003 19:44:46 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Sun Oct 19 21:44:44 2003 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ABJTo-0000JE-00 for ; Sun, 19 Oct 2003 21:44:44 +0200 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 4991110B36; Sun, 19 Oct 2003 21:44:42 +0200 (MEST) Original-Received: from mail.solcon.net (mail.solcon.net [212.45.33.5]) by ref.ntg.nl (Postfix) with ESMTP id 1CC8C10ABB for ; Sun, 19 Oct 2003 21:37:08 +0200 (MEST) Original-Received: from server-1.pragma-net.nl (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by mail.solcon.net (8.11.6/8.9.3) with ESMTP id h9JJauK21217 for ; Sun, 19 Oct 2003 21:36:56 +0200 Original-Received: by server-1.pragma-net.nl (Postfix, from userid 65534) id 40881234CF; Sun, 19 Oct 2003 21:37:00 +0200 (CEST) Original-Received: from laptop-3.wxs.nl (unknown [10.100.1.1]) by server-1.pragma-net.nl (Postfix) with ESMTP id D674717AF2 for ; Sun, 19 Oct 2003 19:36:57 +0000 (UTC) X-Sender: hagen-mail@localhost X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Original-To: ntg-context@ntg.nl In-Reply-To: Original-References: Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:13892 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:13892 At 18:53 18/10/2003, you wrote: >Hello, > >with a lot of help of Lutz (member of this list) I am now able to produce >Context files and compile them to PDF. Now I am reading the documentation >and some emails from this list to learn some details. >I played a little bit with natural tables (also read the examples in >ennatab.pdf) - but I think that is not all what is possible with natural >tables. Wehre can I find a documetation with all options for nat. tabs? > >At the examples there was no table with round corners. But I found a >parameter for it -I tried: > >\\eTABLE[corner=round] >with the result: every cell was round. >It looks funny but is not the thing I was looking for. >I want to have round corners arround the table: >left corner top and bottom >right corner top and bottom > >1. How does it work? >2. Where can I find all parameters/options for natural tables > (I googled with no success). \starttext \setupcolors[state=start] \showstruts \setupTABLE[row] [first][topframe=off] \setupTABLE[row] [last] [bottomframe=off] \setupTABLE[column][first][leftframe=off] \setupTABLE[column][last] [rightframe=off] \framed[strut=no,corner=round,offset=.5\linewidth]\bgroup \bTABLE \bTR \bTD test \eTD \bTD test \eTD \eTR \bTR \bTD test \eTD \bTD test \eTD \eTR \bTR \bTD test \eTD \bTD test \eTD \eTR \eTABLE \egroup \def\StartTable {\setupTABLE[row] [first][topframe=off]% \setupTABLE[row] [last] [bottomframe=off]% \setupTABLE[column][first][leftframe=off]% \setupTABLE[column][last] [rightframe=off]% \framed[strut=no,corner=round,offset=.5\linewidth]\bgroup} \def\StopTable {\egroup} \StartTable \bTABLE \bTR \bTD test \eTD \bTD test \eTD \eTR \bTR \bTD test \eTD \bTD test \eTD \eTR \bTR \bTD test \eTD \bTD test \eTD \eTR \eTABLE \StopTable \stoptext