From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25069 Path: news.gmane.org!not-for-mail From: Steffen Wolfrum Newsgroups: gmane.comp.tex.context Subject: columnsets and footnotes (better explained) Date: Tue, 10 Jan 2006 22:19:20 +0100 Message-ID: <5FEBFD06-21F5-412A-A1E0-02E28AE6C840@st.estfiles.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1136927997 12896 80.91.229.2 (10 Jan 2006 21:19:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 10 Jan 2006 21:19:57 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Tue Jan 10 22:19:54 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 1EwQty-0005Le-M3 for gctc-ntg-context-518@m.gmane.org; Tue, 10 Jan 2006 22:19:34 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 38485126F8; Tue, 10 Jan 2006 22:19:34 +0100 (CET) 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 13779-05-5; Tue, 10 Jan 2006 22:19:30 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id AC3C1127F2; Tue, 10 Jan 2006 22:19:30 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 67EBB127F2 for ; Tue, 10 Jan 2006 22:19:29 +0100 (CET) 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 13779-05-4 for ; Tue, 10 Jan 2006 22:19:28 +0100 (CET) Original-Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.18.14]) by ronja.ntg.nl (Postfix) with SMTP id 6D71F126F8 for ; Tue, 10 Jan 2006 22:19:28 +0100 (CET) Original-Received: (qmail 11596 invoked from network); 10 Jan 2006 21:19:27 -0000 Original-Received: from unknown (HELO [83.242.62.163]) (698580@[83.242.62.163]) (envelope-sender ) by smtprelay02.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 10 Jan 2006 21:19:27 -0000 Original-To: mailing list for ConTeXt users X-Mailer: Apple Mail (2.746.2) X-Virus-Scanned: 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: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:25069 Archived-At: Hi Hans, maybe my problem was not clear enough. So please let me try it once more. The following example has main text in 2 columns and footnote text in 3 columns: \setupfootnotes[n=3] \starttext \startcolumns \dorecurse{10}{\input tufte\footnote{\input ward \relax}} \stopcolumns \stoptext But as I also have to use section titles that span the columns (without causing pagebreaks) I need to use columnsets (like they are used in the following example): \definecolumnset[two][n=2] \definecolumnsetspan[two][n=2] \setupfootnotes[n=1,width=\hsize] \starttext \startcolumnset[two] \input tufte\footnote{\input ward \relax} \startcolumnsetspan[two] \subsubsection{Spanning all columns without page break} \stopcolumnsetspan \dorecurse{10}{\input ward\footnote{\input tufte \relax}} \stopcolumnset \stoptext But I don't want the footnotes to be placed at the bottom of each column, I want them to be set in 3 columns at the bottom of the page (as shown in the columns example above). How can this be done? Steffen