From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/16515 Path: main.gmane.org!not-for-mail From: Duncan Hothersall Newsgroups: gmane.comp.tex.context Subject: bTABLE rogue column widths Date: Tue, 21 Sep 2004 11:50:56 +0100 Sender: ntg-context-bounces@ntg.nl Message-ID: <41500790.1080404@capdm.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1095763874 30425 80.91.229.6 (21 Sep 2004 10:51:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 21 Sep 2004 10:51:14 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Tue Sep 21 12:51:02 2004 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C9iEg-00046s-00 for ; Tue, 21 Sep 2004 12:51:02 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id F0C511276B; Tue, 21 Sep 2004 12:51:01 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 18772-02-3; Tue, 21 Sep 2004 12:51:00 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id B884F1277B; Tue, 21 Sep 2004 12:50:59 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 10B771277B for ; Tue, 21 Sep 2004 12:50:58 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 18772-02-2 for ; Tue, 21 Sep 2004 12:50:57 +0200 (CEST) Original-Received: from liszt-02.ednet.co.uk (unknown [212.20.226.19]) by ronja.ntg.nl (Postfix) with ESMTP id 645CA1276B for ; Tue, 21 Sep 2004 12:50:57 +0200 (CEST) Original-Received: from [192.168.254.8] (unknown [212.20.255.162]) by liszt-02.ednet.co.uk (Postfix) with ESMTP id 8EEE095A6A for ; Tue, 21 Sep 2004 11:50:56 +0100 (BST) User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-GB; rv:1.7) Gecko/20040514 X-Accept-Language: en-gb, en Original-To: ntg-context@ntg.nl X-Virus-Scanned: by amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: by amavisd-new at ntg.nl Xref: main.gmane.org gmane.comp.tex.context:16515 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:16515 Hi all. I have the following code, used to set quotations with over-large quote marks either side. I use the bTABLE/eTABLE model because it is easy, and because it allows for the variable width of the quotation part (the middle column) and for it to carry over into multiple lines. When this code is run, the first one works as expected (the cell containing the quote is the width of the quote text). The second one produces a quote cell which expands so that the table fills the whole width of the page, even though the quote text itself is thinner than the previous one. I have left the lines in the table to show the problem. This runs on live.contextgarden.net and shows the same behaviour. Any thoughts on how to fix it to make the second one work like the first? Thanks. Duncan -- \autoloadmapfilestrue \setupoutput[pdftex] \setuppapersize[A4][A4] \setupcolors[rgb=no,state=start] \setupcolor[cmyk] \usetypescript[adobekb][\defaultencoding] \usetypescript[postscript][\defaultencoding] \setupbodyfont[pos,ss,12pt] \starttext \blank[2*big] \bTABLE[align={middle,high},offset=none] \setupTABLE[column][1,3][width=10mm] \bTR\bTD\definedfont[Helvetica at 20pt]\color[blue] ``\eTD \bTD {Staff are the biggest asset -- the warmth they generate inside this building is enormous.}\eTD \bTD\definedfont[Helvetica at 20pt]\color[blue] ''\eTD\eTR \eTABLE \blank[2*big] \bTABLE[align={middle,high},offset=none] \setupTABLE[column][1,3][width=10mm] \bTR\bTD\definedfont[Helvetica at 20pt]\color[blue] ``\eTD \bTD {I've been everyone to them. I've been a husband, a brother and a father.}\eTD \bTD\definedfont[Helvetica at 20pt]\color[blue] ''\eTD\eTR \eTABLE \stoptext --