From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/30713 Path: news.gmane.org!not-for-mail From: Wolfgang Schuster Newsgroups: gmane.comp.tex.context Subject: Re: no indent after figure Date: Fri, 8 Sep 2006 17:47:10 +0200 Message-ID: <20060908174710.e2b21320.schuster.wolfgang@googlemail.com> References: <45018C50.1484.115C9C2@wwl.musensturm.de> 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 1157730479 1339 80.91.229.2 (8 Sep 2006 15:47:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 8 Sep 2006 15:47:59 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Sep 08 17:47:56 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 1GLia0-0004Sx-TZ for gctc-ntg-context-518@m.gmane.org; Fri, 08 Sep 2006 17:47:44 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 00E3C1FE32; Fri, 8 Sep 2006 17:47:44 +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 07129-07-3; Fri, 8 Sep 2006 17:47:36 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 1A1441FE08; Fri, 8 Sep 2006 17:47:36 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A6A651FE08 for ; Fri, 8 Sep 2006 17:47:31 +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 07129-07-2 for ; Fri, 8 Sep 2006 17:47:24 +0200 (CEST) Original-Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by ronja.ntg.nl (Postfix) with SMTP id 68B381FDF5 for ; Fri, 8 Sep 2006 17:47:23 +0200 (CEST) Original-Received: by nz-out-0102.google.com with SMTP id 16so448841nzp for ; Fri, 08 Sep 2006 08:47:21 -0700 (PDT) Original-Received: by 10.64.156.1 with SMTP id d1mr1997332qbe; Fri, 08 Sep 2006 08:47:20 -0700 (PDT) Original-Received: from unknown ( [217.185.122.68]) by mx.gmail.com with ESMTP id e17sm1258517qba.2006.09.08.08.47.19; Fri, 08 Sep 2006 08:47:20 -0700 (PDT) Original-To: ntg-context@ntg.nl In-Reply-To: X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.6.10; i686-pc-mingw32) 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:30713 Archived-At: On Fri, 8 Sep 2006 07:43:17 -0700 David Arnold wrote: > Use \indentation, as in: > > \indentation Now is the time. > > On Sep 8, 2006, at 6:29 AM, Wolfgang Werners-Lucchini wrote: > > > Hallo! > > > > I have a problem with indenting. > > The paragraph following the \placefigure > > is not indented and I find not any way to achieve this. > > The following testfile shows the situation: > > ---------------------------------------------- > > \setupfloats[indentnext=yes]% <--- Doesn't help! > > \setupfloat[figure][default={page,high,none}] > > \setupcaption[figure][number=no] > > \setupindenting[medium,yes,next] > > \starttext > > \dorecurse{2}{\input knuth\par} > > \placefigure{}{\framed[offset=none, > > width=\makeupwidth, > > height=\textheight]{figure}} > > > > \indenting[yes]% <--- Doesn't help! > > \indent {\bf Here!} % <--- Doesn't help! > > \dorecurse{3}{\input knuth\par} > > \stoptext > > ---------------------------------------------- > > I tryed the 'indentnext=yes' in \setupfloats > > but I don't know if that option should do what I want or > > if it has an other meaning. > > > > Wolfgang > > The following works on my machine \setupindenting[yes,medium] \setupfloats[indentnext=yes] \starttext \input knuth \par \placefigure {} {\framed [offset=none, width=0.6\makeupwidth, height=0.4\textheight] {figure}} \dorecurse{3}{\input knuth\par} \stoptext Wolfgang