From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/59952 Path: news.gmane.org!not-for-mail From: Peter =?utf-8?Q?M=C3=BCnster?= Newsgroups: gmane.comp.tex.context Subject: Re: nomarking function in MKIV Date: Thu, 1 Jul 2010 11:23:01 +0200 Message-ID: <20100701092301.GA9647@gaston.couberia.bzh> References: <87iq516cjj.fsf@devereux.me.uk> <201006301019.23763.alan.braslau@cea.fr> <4C2BC6C0.1030400@googlemail.com> <201007011016.04168.alan.braslau@cea.fr> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1277976202 15532 80.91.229.12 (1 Jul 2010 09:23:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 1 Jul 2010 09:23:22 +0000 (UTC) To: mailing list for ConTeXt users Original-X-From: ntg-context-bounces@ntg.nl Thu Jul 01 11:23:21 2010 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from balder.ntg.nl ([195.12.62.10]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OUFzI-0005ig-3L for gctc-ntg-context-518@m.gmane.org; Thu, 01 Jul 2010 11:23:16 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id C4059C9B88; Thu, 1 Jul 2010 11:23:15 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id n0PTz3uTA7JW; Thu, 1 Jul 2010 11:23:10 +0200 (CEST) Original-Received: from balder.ntg.nl (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id 32F64C9AF1; Thu, 1 Jul 2010 11:23:10 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id A7891C9AF1 for ; Thu, 1 Jul 2010 11:23:08 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KniSYBxpfyBz for ; Thu, 1 Jul 2010 11:23:03 +0200 (CEST) Original-Received: from smtp20.orange.fr (smtp20.orange.fr [80.12.242.26]) by balder.ntg.nl (Postfix) with ESMTP id E784EC9ADD for ; Thu, 1 Jul 2010 11:23:02 +0200 (CEST) Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf2002.orange.fr (SMTP Server) with ESMTP id 6B72220053B5 for ; Thu, 1 Jul 2010 11:23:02 +0200 (CEST) Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf2002.orange.fr (SMTP Server) with ESMTP id 56E26200ED38 for ; Thu, 1 Jul 2010 11:23:02 +0200 (CEST) Original-Received: from gaston.couberia.bzh (ARennes-551-1-16-17.w92-129.abo.wanadoo.fr [92.129.127.17]) by mwinf2002.orange.fr (SMTP Server) with ESMTP id 17F0F200ED39 for ; Thu, 1 Jul 2010 11:23:02 +0200 (CEST) X-ME-UUID: 20100701092302981.17F0F200ED39@mwinf2002.orange.fr Original-Received: by gaston.couberia.bzh (Postfix, from userid 1000) id 8EA863057B; Thu, 1 Jul 2010 11:23:01 +0200 (CEST) Mail-Followup-To: mailing list for ConTeXt users Content-Disposition: inline In-Reply-To: <201007011016.04168.alan.braslau@cea.fr> User-Agent: Mutt/1.5.17 (2007-11-01) X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.12 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 Xref: news.gmane.org gmane.comp.tex.context:59952 Archived-At: On Thu, Jul 01 2010, Alan BRASLAU wrote: > Functionality such as the subject of this thread > should be available by default, without having to mess with macros. > In particular, functionality present in LaTeX for quite some time > should be possible within ConTeXt rather easily, the ConTeXt way, > of course. The ConTeXt way is now: \startchapter[...] \stopchapter When you don't need the extra functionality, you can use the old \chapter command, but when you need it, the just use the new environment. > Thus, > \chapter[toc-entry]{title} > of LaTeX should have its equivalent in ConTeXt, > and this would be logically something like: > \chapter [title={title},list={toc-entry}] Why? LaTeX is not the reference for ConTeXt. It could also be like this: \startsection[type=chapter, title=my title, ...] \stopsection > Furthermore, > \chapter*{title} > of LaTeX should also have its simple equivalent in ConTeXt, > and this would be logically something like: > \chapter [number=no] {title} This should be simple enough: \startchapter[number=no] \stopchapter > which could very logically be: > \placefigure [where] [fig:reference] [caption=no] > {figure} > and > \placefigure [where] [fig:reference] [caption={caption},list={lof-entry}] > {figure} > the ConTeXt way! Or: \placefigure[where=here, label=fig:label, caption=my caption, ...]{figure} Cheers, Peter -- Contact information: http://pmrb.free.fr/contact/ ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________