From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/26397 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Changing font size Date: Sat, 18 Mar 2006 21:52:26 -0800 Message-ID: <90C0F965-7AB6-4D6E-BA35-9860763C839E@cox.net> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v746.3) Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1142747645 11354 80.91.229.2 (19 Mar 2006 05:54:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 19 Mar 2006 05:54:05 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sun Mar 19 06:54:03 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 1FKqra-0005o1-9k for gctc-ntg-context-518@m.gmane.org; Sun, 19 Mar 2006 06:54:02 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9C4741279A; Sun, 19 Mar 2006 06:54:00 +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 12262-06; Sun, 19 Mar 2006 06:53:53 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 7901A12793; Sun, 19 Mar 2006 06:53:53 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A320112793 for ; Sun, 19 Mar 2006 06:53:51 +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 12166-08 for ; Sun, 19 Mar 2006 06:53:50 +0100 (CET) Original-Received: from fed1rmmtao09.cox.net (fed1rmmtao09.cox.net [68.230.241.30]) by ronja.ntg.nl (Postfix) with SMTP id 533251277C for ; Sun, 19 Mar 2006 06:53:50 +0100 (CET) Original-Received: from [10.0.1.2] (really [70.191.56.23]) by fed1rmmtao09.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060319055343.PFOQ25099.fed1rmmtao09.cox.net@[10.0.1.2]> for ; Sun, 19 Mar 2006 00:53:43 -0500 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.746.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:26397 Archived-At: All, I have this: \startMPpage %figure library name: sec3q1 %initialize window parameters numeric xmin, xmax, xscl, ymin, ymax, yscl; xmin:=-10; xmax:=10; xscl:=1; ymin:=-200; ymax:=200; yscl:=20; %initialize number of points numeric num_points; num_points:=200; %initialize dimensions of image numeric width, height; width=1.5in; height=1.5in; %create the grid create_grid(xmin,xmax,xscl,ymin,ymax,yscl,width,height); boolean lbl_scl; lbl_scl:=false; %create the axes create_axes(xmin,xmax,ymin,ymax,width,height,lbl_scl)("$x$")("$y$"); %draw the function drawfcn("x","(x+6)*(x-1)* (x-5)",xmin,xmax,ymin,ymax,width,height,num_points,xmin,xmax) withcolor blue ; %initialize scale numeric ux, uy; (xmax-xmin)*ux=width; (ymax-ymin)*uy=height; %define polynomial vardef f(expr x)= (x+6)*(x-1)*(x-5) enddef; %label extrema dotlabel.top(btex Local Maximum etex, (-3.2,f(-3.2)) xyscaled (ux,uy)); dotlabel.bot(btex Local Minimum etex, (3.2,f(3.2)) xyscaled (ux,uy)); \stopMPpage What I'd like to do is typeset those "Local Maximum" and "Local Minimum" in the defaultfont at a size 2 pts smaller than the default. Any easy way to do this?