From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/33914 Path: news.gmane.org!not-for-mail From: "luigi scarso" Newsgroups: gmane.comp.tex.context Subject: Re: page-break after \section Date: Wed, 21 Mar 2007 05:37:39 +0100 Message-ID: References: Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1174451880 31133 80.91.229.12 (21 Mar 2007 04:38:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 21 Mar 2007 04:38:00 +0000 (UTC) To: ntg-context@ntg.nl Original-X-From: ntg-context-bounces@ntg.nl Wed Mar 21 05:37:52 2007 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 lo.gmane.org with esmtp (Exim 4.50) id 1HTsa8-0002M4-3z for gctc-ntg-context-518@m.gmane.org; Wed, 21 Mar 2007 05:37:52 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 488F3200E7; Wed, 21 Mar 2007 05:37:50 +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 01220-03; Wed, 21 Mar 2007 05:37:44 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8AED5200E2; Wed, 21 Mar 2007 05:37:44 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 06B22200E2 for ; Wed, 21 Mar 2007 05:37:43 +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 32670-04 for ; Wed, 21 Mar 2007 05:37:40 +0100 (CET) Original-Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.243]) by ronja.ntg.nl (Postfix) with ESMTP id 7DD38200DF for ; Wed, 21 Mar 2007 05:37:40 +0100 (CET) Original-Received: by an-out-0708.google.com with SMTP id d33so117470and for ; Tue, 20 Mar 2007 21:37:39 -0700 (PDT) Original-Received: by 10.100.32.1 with SMTP id f1mr185461anf.1174451859505; Tue, 20 Mar 2007 21:37:39 -0700 (PDT) Original-Received: by 10.100.178.8 with HTTP; Tue, 20 Mar 2007 21:37:39 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.9 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:33914 Archived-At: On 3/20/07, Peter M=FCnster wrote: > Hello, > > in the following example, there is a page-break after the second section > title. \page[no] does not help. > > Is this normal or a bug? Normal, I believe > > \starttext > \section{bla} > \dorecurse{36}{bla\par} > \section{bla} > \page[no] > \startitemize > \dorecurse{5}{\item bla} > \stopitemize > \stoptext try this %%%%%%%%%%%%%%%%%% \showframe \starttext \section{bla} \dorecurse{36}{bla\par} \section{bla} \page[no] \startitemize \dorecurse{5}{\item bla} \stopitemize \stoptext %%%%%%%%%%%%%%%%%%%%% and this %%%%%%%%%%%%%%%%5 \showframe \starttext \section{bla} \dorecurse{34}{bla\par}%%%% not 35 or 36 ! \section{bla} \page[no] \startitemize \dorecurse{5}{\item bla} \stopitemize \stoptext %%%%%%%%%%%%%%%%%%% maybe some defaults spaces of \section luigi