MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: How can I write inside the frame.

  • To: mathgroup at smc.vnet.net
  • Subject: [mg35928] Re: [mg35907] How can I write inside the frame.
  • From: Tomas Garza <tgarza01 at prodigy.net.mx>
  • Date: Thu, 8 Aug 2002 06:06:18 -0400 (EDT)
  • References: <200208070959.FAA04543@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Try this:

In[1]:=
Plot[{Sin[x], Sin[2*x], Sin[3*x], Sin[4*x]}, {x, 0, 1},
   Frame -> True, Axes -> False,
   Epilog -> {Text["Name1", {0.8, -0.2}],
     Text["Name2", {0.85, 0.5}], Text["Name3",
      {0.4, 0.6}], Text["Name4", {0.15, 0.8}]}];

See the Help Browser under "Text". To obtain the coordinates, click anywhere
inside the graph. A cross-shaped pointer will appear. Then press Ctrl and a
pair of coordinates will show on the lower left-hand corner of your notebook
window.  Keeping Ctrl pressed you can move the pointer (with the mouse) to
any place you want inside the graph and the coordinates will change
accordingly.

Tomas Garza
Mexico City
----- Original Message -----
From: "Sergio Milo" <milo at dmo.fee.unicamp.br>
To: mathgroup at smc.vnet.net
Subject: [mg35928] [mg35907] How can I write inside the frame.


>         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.
>
>
>
>



  • Prev by Date: Determining whether a function is periodic
  • Next by Date: Graphtheory package questions
  • Previous by thread: How can I write inside the frame.
  • Next by thread: RE: How can I write inside the frame.