From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/10589 Path: main.gmane.org!not-for-mail From: Patrick Gundlach Newsgroups: gmane.comp.tex.context Subject: Re: Footnote numbering Date: Wed, 29 Jan 2003 11:21:39 +0100 Organization: privat Sender: ntg-context-admin@ntg.nl Message-ID: <8765s845os.fsf@gundla.ch> References: <22234.1043798664@www57.gmx.net> Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1043835713 18617 80.91.224.249 (29 Jan 2003 10:21:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 29 Jan 2003 10:21:53 +0000 (UTC) Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18dpLs-0004q9-00 for ; Wed, 29 Jan 2003 11:21:52 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 2842410AF5; Wed, 29 Jan 2003 11:23:37 +0100 (MET) Original-Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.185]) by ref.ntg.nl (Postfix) with ESMTP id CBE2D10AE8 for ; Wed, 29 Jan 2003 11:22:09 +0100 (MET) Original-Received: from [212.227.126.162] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 18dpM9-0003ue-00 for ntg-context@ntg.nl; Wed, 29 Jan 2003 11:22:09 +0100 Original-Received: from [129.217.137.186] (helo=levana) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 18dpM8-0000n2-00 for ntg-context@ntg.nl; Wed, 29 Jan 2003 11:22:08 +0100 Original-Received: from pg by levana with local (Exim 3.12 #1 (Debian)) id 18dpLg-0000IE-00 for ; Wed, 29 Jan 2003 11:21:40 +0100 Original-To: ntg-context@ntg.nl X-Lieblings-Musik: a.c. In-Reply-To: <22234.1043798664@www57.gmx.net> (cohsb@gmx.de's message of "Wed, 29 Jan 2003 01:04:24 +0100 (MET)") Original-Lines: 50 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i586-pc-linux-gnu) Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:10589 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:10589 cohsb@gmx.de writes: Hello Chris, > is there a possibility to restart the numbering of footnotes? (i.e. i, ii, > iii,... in the front matter, and then 1,2,3... in the body). > I could switch to the roman numerals quite easily but I could not > manage to let the new numbering start at 1. > Perhaps somebody knows a simple solution? Since it is stated in the manual to look at core-not.tex, I did so and found the command \resetnummer[...]. I have no idea if this is ok to use (but I guess it is not, since Hans always comes up with a better solution ;->) but here is the simple hack anyway: \setupfootnotes[conversion=romannumerals] \starttext \startfrontmatter Some text\footnote{interesting}. \stopfrontmatter \resetnummer[footnote] \setupfootnotes[conversion=numbers] \startbodymatter Some text\footnote{interesting}. \stopbodymatter \startbackmatter Some text\footnote{interesting}. \stopbackmatter \stoptext > I also tried to use > parts for that, which just led to funny page numbers but did not > have any influence on the footnote numbering at all. Then give this a try: \setupfootnotes[conversion=romannumerals,way=bypart] \starttext \part {one} Some text\footnote{interesting}. \part {two} \setupfootnotes[conversion=numbers] Some text\footnote{interesting}. \part {three} Some text\footnote{interesting}. \stoptext Patrick