From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/27594 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Duplicate names in figure libraries Date: Mon, 1 May 2006 21:28:16 -0700 Message-ID: <96FEE83B-7532-4566-8AD4-6949214A8F65@cox.net> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v749.3) Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1146544192 9656 80.91.229.2 (2 May 2006 04:29:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 2 May 2006 04:29:52 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Tue May 02 06:29:49 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 1FamWD-0004eh-Lc for gctc-ntg-context-518@m.gmane.org; Tue, 02 May 2006 06:29:49 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9B02A127A9; Tue, 2 May 2006 06:29:48 +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 14041-04; Tue, 2 May 2006 06:29:42 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8CE071279B; Tue, 2 May 2006 06:29:42 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 872FC1279B for ; Tue, 2 May 2006 06:29:40 +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 14129-02 for ; Tue, 2 May 2006 06:29:37 +0200 (CEST) Original-Received: from fed1rmmtao12.cox.net (fed1rmmtao12.cox.net [68.230.241.27]) by ronja.ntg.nl (Postfix) with SMTP id F33401276C for ; Tue, 2 May 2006 06:29:36 +0200 (CEST) Original-Received: from [10.0.1.2] (really [70.191.56.23]) by fed1rmmtao12.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060502042934.PXSE27919.fed1rmmtao12.cox.net@[10.0.1.2]> for ; Tue, 2 May 2006 00:29:34 -0400 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.749.3) 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:27594 Archived-At: Hans et al, I have two figure libraries, figlibSection1.xml and figlibSection2.xml. In the first, I have:
sec1rat1.png College of the Redwoods Mathematics Department
In the second, I have:
section2figs-mpgraph.1 College of the Redwoods Mathematics Department
Now, section1.tex does: \usefigurebase[figures/figlibSection1] And later: \startbuffer[figure] \startcombination[3*1] {\externalfigure[rat1][width=.2\textwidth]}{(a)} {\externalfigure[rat2][width=.2\textwidth]}{(b)} {\externalfigure[rat3][width=.2\textwidth]}{(c)} \stopcombination \stopbuffer \placefigure [][fig:rat] {The calculator attempts to draw a continuous function when it shouldn't.} {\getbuffer[figure]} Section2.tex does: \usefigurebase[figures/figlibSection2] And later: \placefigure [][fig:rat1] {The numerator is zero at $x=-2$. This is an $x$-intercept of the graph. The denominator is zero at $x=3$. This is a vertical asymptote of the graph.} {\externalfigure[rat1]} All is fine if I compile section1.tex and section2.tex separately. But I have chapter6.tex with: \startproduct chapter6 \project book \startbodymatter \setupheadnumber[chapter][5] \chapter[chap:6]{Rational Functions} \component chapter6/section1 %Introducing Rational Functions \component chapter6/section2 %Zeros and Asymptotes \stopbodymatter \stopproduct When I compile this, the rat1 in section2.tex uses the rat1 meant for section1.tex instead. Any I can fix this other than giving unique names to everything?