From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/31100 Path: news.gmane.org!not-for-mail From: "Mojca Miklavec" Newsgroups: gmane.comp.tex.context Subject: Re: Texts after typing environment Date: Fri, 29 Sep 2006 02:57:26 +0200 Message-ID: <6faad9f00609281757v41bc4748hdc833cae6bd52424@mail.gmail.com> References: <769ba7780609270850j503ba7ffwc2e9f911fd919cab@mail.gmail.com> 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 1159491849 529 80.91.229.2 (29 Sep 2006 01:04:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 29 Sep 2006 01:04:09 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Sep 29 03:04:03 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 1GT6hL-0007lk-1t for gctc-ntg-context-518@m.gmane.org; Fri, 29 Sep 2006 02:57:52 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 56C611FF51; Fri, 29 Sep 2006 02:57:50 +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 30432-06; Fri, 29 Sep 2006 02:57:43 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 0278A1FF55; Fri, 29 Sep 2006 02:57:43 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 55DC71FF55 for ; Fri, 29 Sep 2006 02:57:39 +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 32366-01 for ; Fri, 29 Sep 2006 02:57:32 +0200 (CEST) Original-Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.224]) by ronja.ntg.nl (Postfix) with SMTP id 5FF2F1FF51 for ; Fri, 29 Sep 2006 02:57:29 +0200 (CEST) Original-Received: by wx-out-0506.google.com with SMTP id s12so732908wxc for ; Thu, 28 Sep 2006 17:57:27 -0700 (PDT) Original-Received: by 10.90.90.16 with SMTP id n16mr1130220agb; Thu, 28 Sep 2006 17:57:26 -0700 (PDT) Original-Received: by 10.90.25.15 with HTTP; Thu, 28 Sep 2006 17:57:26 -0700 (PDT) Original-To: "mailing list for ConTeXt users" In-Reply-To: <769ba7780609270850j503ba7ffwc2e9f911fd919cab@mail.gmail.com> Content-Disposition: inline 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:31100 Archived-At: On 9/27/06, Zhichu Chen wrote: > Hello everybody, > > If I type: > > ------------------------------------------- > \starttyping > some verbatim texts > \stoptyping > -------------------------------------------- > > does ConTeXt treat it as a complete paragraph? > In LaTeX, when I type: > > -------------------------------------- > \begin{verbatim} > some texts here > \end{verbatim} > some other texts > \begin{verbatim} > some texts here > \end{verbatim} > > other materials > --------------------------------------- > > The output will be > > --------------------------------------- > some texts here > some other texts > some texts here > other meterials -----> This line is indented !! > ---------------------------------------- > > What should I do in ConTeXt? I really want to control this. but > whether I leave a blank line after \stoptyping or not, nothing > changed. In LaTeX paragraph indenting is turned on by default. In ConTeXt you have to turn it on first, for example with \setupindenting[first,big,yes] After that you probably have contrary problems: you have to turn indenting explicitely off if you don't want "some other texts" to be indented: \starttyping some texts here \stoptyping \noindent some other texts \starttyping some texts here \stoptyping other materials But this should be configurable somehow. (I bet it is.) I tried some of \setuptyping options, but none of those I tried was of any help. Perhaps some other users may help figuring out the proper option if available. As a workaround this might help temporary. Mojca