From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/14478 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: endnotes: ! Dimension too large. ?? Date: Sat, 10 Jan 2004 20:33:06 +0100 Sender: ntg-context-admin@ntg.nl Message-ID: <6.0.1.1.2.20040110203049.02eecff0@localhost> References: Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: sea.gmane.org 1073763262 29075 80.91.224.253 (10 Jan 2004 19:34:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 10 Jan 2004 19:34:22 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Sat Jan 10 20:34:20 2004 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AfOsG-000578-00 for ; Sat, 10 Jan 2004 20:34:20 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 2D4D410B34; Sat, 10 Jan 2004 20:33:39 +0100 (MET) Original-Received: from mail.solcon.net (mail.solcon.net [212.45.33.5]) by ref.ntg.nl (Postfix) with ESMTP id E33C010B2B for ; Sat, 10 Jan 2004 20:32:39 +0100 (MET) Original-Received: from server-1.pragma-net.nl (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by mail.solcon.net (8.11.6/8.9.3) with ESMTP id i0AJX5i19659 for ; Sat, 10 Jan 2004 20:33:05 +0100 Original-Received: by server-1.pragma-net.nl (Postfix, from userid 65534) id 17F342EA55; Sat, 10 Jan 2004 20:33:14 +0100 (CET) Original-Received: from laptop-3.wxs.nl (unknown [10.100.1.1]) by server-1.pragma-net.nl (Postfix) with ESMTP id E59C817B24 for ; Sat, 10 Jan 2004 19:33:11 +0000 (UTC) X-Sender: hagen-mail@localhost X-Mailer: QUALCOMM Windows Eudora Version 6.0.1.1 Original-To: ntg-context@ntg.nl In-Reply-To: Original-References: 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:14478 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:14478 At 01:09 10/01/2004, you wrote: >OK, I have more than 700 footnotes - but when using "location=page" >everything works fine. > >I was trying to find whether there is something missing when I just >continue, and I found the TableOfContent is cut. >But the text and the footnotes as well seem to be OK. > > >Is there a patch helping me to avoid this error? Why not use the following mechanism: \starttext \definelist[MyNoteList] \newcounter\MyNotes \long\def\MyNote#1% {\ifhmode\unskip\fi \doglobal\increment\MyNotes\relax \high{\MyNotes}% \expanded{\writetolist[MyNoteList]{\MyNotes}}{#1}} \dorecurse{1000}{test \MyNote{Whow, another note}\endgraf} \page \placelist[MyNoteList][criterium=text] \stoptext You can format the list any way you like, e.g.: \def\MyNoteList#1#2#3{#1\quad#2\endgraf} \placelist[MyNoteList][criterium=text,command=\MyNoteList] also, you can now cal lthem per chapter, \placelist[MyNoteList][criterium=chapter] etc