Re: How can I write inside the frame.
- To: mathgroup at smc.vnet.net
- Subject: [mg35925] Re: How can I write inside the frame.
- From: "ng" <georgakopoulos at mindspring.com>
- Date: Thu, 8 Aug 2002 06:06:14 -0400 (EDT)
- Organization: MindSpring Enterprises
- References: <aiqs0k$4js$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
You need to combine it with the Text[ ] "primitive" in Show[Graphics[ ] ], something like this: yourplot=Plot[{Sin[x],Sin[2 x],Sin[3 x], Sin[4 x]},{x,0,1},Frame->True,Axes->False, DisplayFunction->Identity]; Show[{yourplot, Graphics[ { Text[ "Origin", {.1,-.2} ] , Text[ "Divergence" , {.8, .5} ] } ] } , DisplayFunction->$DisplayFunction]; "Sergio Milo" <milo at dmo.fee.unicamp.br> wrote in message news:aiqs0k$4js$1 at smc.vnet.net... > Dear mathgroup friends. > > For example, I have this program. > > Plot[{Sin[x],Sin[2 x],Sin[3 x], Sin[4 > x]},{x,0,1},Frame->True,Axes->False]. > > I need write names inside the frame, how can do that. > > Anybody can help me. > > Thanks for advance. > > > >