From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/19054 Path: news.gmane.org!not-for-mail From: "Michael Fuchs" Newsgroups: gmane.comp.tex.context Subject: Floating table caption extends textwidth Date: Wed, 16 Mar 2005 21:29:54 +0100 Message-ID: <20050316202955.5D8FE5D29F@sunkist.iskp.uni-bonn.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1111005083 504 80.91.229.2 (16 Mar 2005 20:31:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 16 Mar 2005 20:31:23 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Mar 16 21:31:22 2005 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 1DBfAi-0005jx-M0 for gctc-ntg-context-518@m.gmane.org; Wed, 16 Mar 2005 21:31:17 +0100 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D74811283B; Wed, 16 Mar 2005 21:32:39 +0100 (CET) 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 16055-01; Wed, 16 Mar 2005 21:32:39 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id ECB6F1276F; Wed, 16 Mar 2005 21:29:57 +0100 (CET) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id CE9551276F for ; Wed, 16 Mar 2005 21:29:56 +0100 (CET) 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 15826-04-3 for ; Wed, 16 Mar 2005 21:29:56 +0100 (CET) Original-Received: from sunkist.iskp.uni-bonn.de (sunkist.iskp.uni-bonn.de [131.220.221.221]) by ronja.ntg.nl (Postfix) with ESMTP id 0A98E1276B for ; Wed, 16 Mar 2005 21:29:56 +0100 (CET) Original-Received: from darkstar (unknown [172.18.0.5]) by sunkist.iskp.uni-bonn.de (Postfix on SuSE Linux 7.2 (i386)) with ESMTP id 5D8FE5D29F for ; Wed, 16 Mar 2005 21:29:55 +0100 (CET) Original-To: X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcUqZulQNEdwpYUyTtiQ5toITYUMXw== 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: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: by amavisd-new at ntg.nl X-MailScanner-From: ntg-context-bounces@ntg.nl X-MailScanner-To: gctc-ntg-context-518@m.gmane.org Xref: news.gmane.org gmane.comp.tex.context:19054 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:19054 Hi! I have problems creating a "multi-line" caption for a floating table. If the caption is too long it will extend the text width. The following example shows this problem on http://live.contextgarden.net/.=20 I was able to find out, that this problem only appears if one of the=20 variables "width" or "textwidth" in the "setuplayout" command were=20 used to define the textwidth.=20 Regards=20 Michael EXAMPLE: -------------------------------------------- \setuplayout[ backspace=3D25mm, topspace=3D10mm, header=3D10mm, = headerdistance=3D5mm, width=3D16cm, % <-- COMMENT THIS TO SEE THE EX WORK height=3Dfit,footer=3D10mm, footerdistance=3D5mm, bottom=3D5mm] \starttext \placetable[here][tab:Referenz] {Zusammenfassung der Ereigniszahlen in Signal und Untergrund mit...=20 erf=FClltem $z$-Cut und einem =FCber den Massenschnitt identifizierten $\pi^0$. \nolist{Ereignisse werden in dem durch den $2 \sigma$-Massenschnitt vorgegebenen Intervall gez=E4hlt, das auch bei den endg=FCltigen = Schnitten zu Selektion verwendet wird.} } { \setupTABLE[x][1][width=3D4cm, align=3Dmiddle] \setupTABLE[x][2,3,4,5][width=3D3cm, align=3Dmiddle] \bTABLE \bTR \bTH Anzahl \eTH \bTH Daten \eTH \bTH MC \eTH \bTH Daten \eTH \bTH MC \eTH \eTR \eTABLE } \stoptext