From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/31060 Path: news.gmane.org!not-for-mail From: Peter Rolf Newsgroups: gmane.comp.tex.context Subject: Re: split natural table over columns Date: Wed, 27 Sep 2006 14:12:36 +0200 Message-ID: <451A6AB4.6030500@gmx.net> References: <97a06f070609260235jbfa4a60pd9688fd985c6811f@mail.gmail.com> <45196309.8010108@gmx.net> <97a06f070609261214t3ef122afn14621a56812c4ae1@mail.gmail.com> <4519984A.1050802@gmx.net> <97a06f070609270025w12937d62m1880e725eb00caf1@mail.gmail.com> <451A40F1.2070606@gmx.net> <97a06f070609270228v76e0ec74y76a84a036675b174@mail.gmail.com> <451A67C1.5050601@gmx.net> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1159359278 20777 80.91.229.2 (27 Sep 2006 12:14:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 27 Sep 2006 12:14:38 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Sep 27 14:14:29 2006 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1GSYHm-0007gh-Fu for gctc-ntg-context-518@m.gmane.org; Wed, 27 Sep 2006 14:13:10 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9634C1FF39; Wed, 27 Sep 2006 14:13:09 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 29315-03; Wed, 27 Sep 2006 14:13:01 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D21F21FF33; Wed, 27 Sep 2006 14:13:00 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 856721FF33 for ; Wed, 27 Sep 2006 14:12:56 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 28671-10-2 for ; Wed, 27 Sep 2006 14:12:49 +0200 (CEST) Original-Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by ronja.ntg.nl (Postfix) with SMTP id 7C70A1FF2D for ; Wed, 27 Sep 2006 14:12:49 +0200 (CEST) Original-Received: (qmail invoked by alias); 27 Sep 2006 12:12:49 -0000 Original-Received: from i577B9176.versanet.de (EHLO [192.168.1.3]) [87.123.145.118] by mail.gmx.net (mp034) with SMTP; 27 Sep 2006 14:12:49 +0200 X-Authenticated: #24293357 User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) Original-To: mailing list for ConTeXt users In-Reply-To: <451A67C1.5050601@gmx.net> X-Enigmail-Version: 0.94.0.0 X-Y-GMX-Trusted: 0 X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:31060 Archived-At: Peter Rolf wrote: > Johan Sandblom wrote: >> Good point, in the actual case there were two columns, a name and a >> number. The reason for using the table is align the name to the left >> and the number to the right. So a more realistic example is something >> like >> >> \starttext >> \bTABLE >> \setupTABLE[c][1][align=right] >> \setupTABLE[c][2][align=left] >> \dorecurse{10}{ >> \bTR\bTD foo\eTD\bTD 123\eTD\eTR >> \bTR\bTD b \eTD\bTD 123456\eTD\eTR} >> \eTABLE >> \stoptext >> > So there is no need to split that table. I would suggest to only > rearrange it a bit for your column layout. Also TABLE is not the best > choise here (I'm no table expert, but I think table is better here). > > %\SetTableToWidth\hsize > \starttable[|l|r|l|r|] \HL > \dorecurse{10}{% > \VL foo \NC 123 \VL[2] b \NC 12345 \VL\AR} \HL > \stoptable > > For more details about table see > http://wiki.contextgarden.net/Table > > HTH, Peter > I missed the horizontal ones :D