From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25100 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Any changes to context preventing this from compiling? Date: Wed, 11 Jan 2006 12:27:46 -0800 Message-ID: <216F916A-4881-4277-B8BC-647F062B8869@cox.net> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: multipart/mixed; boundary=Apple-Mail-2--209723585 X-Trace: sea.gmane.org 1137011375 314 80.91.229.2 (11 Jan 2006 20:29:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 11 Jan 2006 20:29:35 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Jan 11 21:29:33 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 1Ewmas-0003RY-Or for gctc-ntg-context-518@m.gmane.org; Wed, 11 Jan 2006 21:29:20 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 5408A127E5; Wed, 11 Jan 2006 21:29:18 +0100 (CET) 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 18908-02; Wed, 11 Jan 2006 21:29:16 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C3E9B127BF; Wed, 11 Jan 2006 21:29:15 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 6E2E3127BF for ; Wed, 11 Jan 2006 21:29:14 +0100 (CET) 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 18860-10-2 for ; Wed, 11 Jan 2006 21:29:13 +0100 (CET) Original-Received: from fed1rmmtao06.cox.net (fed1rmmtao06.cox.net [68.230.241.33]) by ronja.ntg.nl (Postfix) with SMTP id CB04D127A3 for ; Wed, 11 Jan 2006 21:29:12 +0100 (CET) Original-Received: from [10.0.1.2] (really [70.191.56.23]) by fed1rmmtao06.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060111202631.LKZK20050.fed1rmmtao06.cox.net@[10.0.1.2]> for ; Wed, 11 Jan 2006 15:26:31 -0500 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.746.2) X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 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:25100 Archived-At: --Apple-Mail-2--209723585 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed All, --Apple-Mail-2--209723585 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="section1figs.tex" Content-Disposition: attachment; filename=section1figs.tex %ouput=pdf \setupcolors[state=start] \definecolor[gridlines][s=0.7] \startMPinclusions color gridlines; gridlines=\MPcolor{gridlines} \stopMPinclusions \startMPgraphic{create function path f 5-by-5} %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; \stopMPgraphic \startMPgraphic{scale and draw f 5-by-5} %scale function path p:=p scaled u; %draw function path drawdblarrow p withcolor blue; \stopMPgraphic \startMPgraphic{draw axis 5-by-5} %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); \stopMPgraphic \startuseMPgraphic{yeqx2} %define function vardef f(expr x)= x*x enddef; \includeMPgraphic{create function path f 5-by-5} %initialize scale numeric u; 10u=2in; \includeMPgraphic{draw axis 5-by-5} \includeMPgraphic{scale and draw f 5-by-5} %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; endfor; \stopuseMPgraphic \startuseMPgraphic{yeq2x2} %define function f(x)=x^2 vardef f(expr x)= x*x enddef; %define function g(x)=2x^2 vardef g(expr x)= 2*x*x enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,10)--(-5,10)--cycle; %create first function path path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %create second function path path q; q:=(-5,g(-5)); for x=-5 step .1 until 5: q:=q--(x,g(x)); endfor; q:=q--(5,g(5)); %clip function path to clipping path q:=q cutbefore cpath; q:=reverse q; q:=q cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 10u: draw (-5u,k)--(5u,k) withcolor gridlines; endfor; for k=-5u step 1u until 5u: draw (k,-5u)--(k,10u) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,10.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,10.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $10$ etex, (0,10u)); %scale function paths p:=p scaled u; q:=q scaled u; %draw function paths drawdblarrow p withcolor blue; drawdblarrow q withcolor red; %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; drawdot ((x,g(x)) scaled u) withpen pencircle scaled 4pt withcolor red; endfor; \stopuseMPgraphic \startuseMPgraphic{yeqhalfx2} %define function f(x)=x^2 vardef f(expr x)= x*x enddef; %define function g(x)=(1/2)x^2 vardef g(expr x)= x*x/2 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %create function path for g path q; q:=(-5,g(-5)); for x=-5 step .1 until 5: q:=q--(x,g(x)); endfor; q:=q--(5,g(5)); %clip function path to clipping path q:=q cutbefore cpath; q:=reverse q; q:=q cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; q:=q scaled u; %draw function paths drawdblarrow p withcolor blue; drawdblarrow q withcolor red; %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; drawdot ((x,g(x)) scaled u) withpen pencircle scaled 4pt withcolor red; endfor; \stopuseMPgraphic \startuseMPgraphic{yeqminusx2} %define function f(x)=x^2 vardef f(expr x)= -x*x enddef; %define function g(x)=(1/2)x^2 vardef g(expr x)= -x*x/2 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %create function path for g path q; q:=(-5,g(-5)); for x=-5 step .1 until 5: q:=q--(x,g(x)); endfor; q:=q--(5,g(5)); %clip function path to clipping path q:=q cutbefore cpath; q:=reverse q; q:=q cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; q:=q scaled u; %draw function paths drawdblarrow p withcolor blue; drawdblarrow q withcolor red; %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; drawdot ((x,g(x)) scaled u) withpen pencircle scaled 4pt withcolor red; endfor; \stopuseMPgraphic \startuseMPgraphic{transleft} %define function f(x)=x^2 vardef f(expr x)= x*x enddef; %define function g(x)=(1/2)x^2 vardef g(expr x)= (x+1)*(x+1) enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %create function path for g path q; q:=(-5,g(-5)); for x=-5 step .1 until 5: q:=q--(x,g(x)); endfor; q:=q--(5,g(5)); %clip function path to clipping path q:=q cutbefore cpath; q:=reverse q; q:=q cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; q:=q scaled u; %draw function paths drawdblarrow p withcolor blue; drawdblarrow q withcolor red; %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; endfor; for x=-3 step 1 until 1: drawdot ((x,g(x)) scaled u) withpen pencircle scaled 4pt withcolor red; endfor; \stopuseMPgraphic \startuseMPgraphic{verttrans} %define function f(x)=x^2 vardef f(expr x)= x*x enddef; %define function g(x)=(1/2)x^2 vardef g(expr x)= (x*x)+1 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %create function path for g path q; q:=(-5,g(-5)); for x=-5 step .1 until 5: q:=q--(x,g(x)); endfor; q:=q--(5,g(5)); %clip function path to clipping path q:=q cutbefore cpath; q:=reverse q; q:=q cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; q:=q scaled u; %draw function paths drawdblarrow p withcolor blue; drawdblarrow q withcolor red; %draw plotted points for x=-2 step 1 until 2: drawdot ((x,f(x)) scaled u) withpen pencircle scaled 4pt withcolor blue; drawdot ((x,g(x)) scaled u) withpen pencircle scaled 4pt withcolor red; endfor; \stopuseMPgraphic \startuseMPgraphic{series1} %define function f(x)=-x^2 vardef f(expr x)= -x*x enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; %draw function paths drawdblarrow p withcolor blue; \stopuseMPgraphic \startuseMPgraphic{series2} %define function f(x)=-x^2 vardef f(expr x)= -(x+2)*(x+2) enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; %draw function paths drawdblarrow p withcolor blue; \stopuseMPgraphic \startuseMPgraphic{series3} %define function f(x)=-x^2 vardef f(expr x)= -(x+2)*(x+2)+3 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; %draw function paths drawdblarrow p withcolor blue; \stopuseMPgraphic \startuseMPgraphic{axis1} %define function f(x)=-(x+2)^2+3 vardef f(expr x)= -(x+2)*(x+2)+3 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; %draw function paths drawdblarrow p withcolor blue; %axis of symmetry drawdblarrow (-2u,-5u)--(-2u,5u) withcolor red; %label axis and vertex drawdot (-2u,3u) withpen pencircle scaled 4pt; label.ulft(btex $(-2,3)$ etex, (-2u,3u)); label.bot(btex $x=-2$ etex, (-2u,-5u)); \stopuseMPgraphic \startuseMPgraphic{axis2} %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %axis of symmetry drawdblarrow (-2u,-5u)--(-2u,5u) withcolor red; %label axis and vertex drawdot (-2u,3u) withpen pencircle scaled 4pt; label.ulft(btex $(-2,3)$ etex, (-2u,3u)); label.bot(btex $x=-2$ etex, (-2u,-5u)); \stopuseMPgraphic \startuseMPgraphic{axis3} %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %axis of symmetry drawdblarrow (-2u,-5u)--(-2u,5u) withcolor red; %label axis and vertex drawdot (-2u,3u) withpen pencircle scaled 4pt; label.ulft(btex $(-2,3)$ etex, (-2u,3u)); label.bot(btex $x=-2$ etex, (-2u,-5u)); %draw plotted poitns drawdot (-1u,2u) withpen pencircle scaled 4pt; drawdot (0u,-1u) withpen pencircle scaled 4pt; \stopuseMPgraphic \startuseMPgraphic{axis4} %initialize scale numeric u; 10u=1.5in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %axis of symmetry drawdblarrow (-2u,-5u)--(-2u,5u) withcolor red; %label axis and vertex drawdot (-2u,3u) withpen pencircle scaled 4pt; label.ulft(btex $(-2,3)$ etex, (-2u,3u)); label.bot(btex $x=-2$ etex, (-2u,-5u)); %draw plotted points drawdot (-1u,2u) withpen pencircle scaled 4pt; drawdot (0u,-1u) withpen pencircle scaled 4pt; drawdot (-3u,2u) withpen pencircle scaled 4pt; drawdot (-4u,-1u) withpen pencircle scaled 4pt; \stopuseMPgraphic \startuseMPgraphic{axis5} %define function f(x)=-x^2 vardef f(expr x)= -(x+2)*(x+2)+3 enddef; %define clipping path path cpath; cpath:=(-5,-5)--(5,-5)--(5,5)--(-5,5)--cycle; %create function path for f path p; p:=(-5,f(-5)); for x=-5 step .1 until 5: p:=p--(x,f(x)); endfor; p:=p--(5,f(5)); %clip function path to clipping path p:=p cutbefore cpath; p:=reverse p; p:=p cutbefore cpath; %initialize scale numeric u; 10u=2in; %draw the grid for k=-5u step 1u until 5u: draw (k,-5u)--(k,5u) withcolor gridlines; draw (-5u,k)--(5u,k) withcolor gridlines; endfor; %draw axes drawdblarrow (-5.2u,0)--(5.2u,0); drawdblarrow (0,-5.2u)--(0,5.2u); %label axes label.rt(btex $x$ etex, (5.2u,0)); label.top(btex $y$ etex, (0,5.2u)); label.bot(btex $5$ etex, (5u,0)); label.lft(btex $5$ etex, (0,5u)); %scale function patha p:=p scaled u; %draw function paths drawdblarrow p withcolor blue; %axis of symmetry drawdblarrow (-2u,-5u)--(-2u,5u) withcolor red; %label axis and vertex drawdot (-2u,3u) withpen pencircle scaled 4pt; label.ulft(btex $(-2,3)$ etex, (-2u,3u)); label.bot(btex $x=-2$ etex, (-2u,-5u)); %draw plotted points drawdot (-1u,2u) withpen pencircle scaled 4pt; drawdot (0u,-1u) withpen pencircle scaled 4pt; drawdot (-3u,2u) withpen pencircle scaled 4pt; drawdot (-4u,-1u) withpen pencircle scaled 4pt; \stopuseMPgraphic \starttext \startMPpage \includeMPgraphic{yeqx2} \stopMPpage \startMPpage \includeMPgraphic{yeq2x2} \stopMPpage \startMPpage \includeMPgraphic{yeqhalfx2} \stopMPpage \startMPpage \includeMPgraphic{yeqminusx2} \stopMPpage \startMPpage \includeMPgraphic{transleft} \stopMPpage \startMPpage \includeMPgraphic{verttrans} \stopMPpage \startMPpage \includeMPgraphic{series1} \stopMPpage \startMPpage \includeMPgraphic{series2} \stopMPpage \startMPpage \includeMPgraphic{series3} \stopMPpage \startMPpage \includeMPgraphic{axis1} \stopMPpage \startMPpage \includeMPgraphic{axis2} \stopMPpage \startMPpage \includeMPgraphic{axis3} \stopMPpage \startMPpage \includeMPgraphic{axis4} \stopMPpage \startMPpage \includeMPgraphic{axis5} \stopMPpage \stoptext %%% Local Variables: %%% mode: conTeXt-en %%% End: --Apple-Mail-2--209723585 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed A month ago the attach file compiled. Is there any change to context since then that would prevent it from compiling? figures $ texexec --version TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005 texexec : TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005 texutil : TeXUtil 9.0.0 - ConTeXt / PRAGMA ADE 1992-2004 tex : pdfeTeX, 3.141592-1.30.4-2.2 (Web2C 7.5.5) context : ver: 2005.12.19 cont-en : ver: 2005.12.19 fmt: 2005.12.21 mes: english cont-nl : ver: 2005.12.19 fmt: 2005.12.21 mes: dutch total run time : 2 seconds figures $ --Apple-Mail-2--209723585 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context --Apple-Mail-2--209723585--