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: [mg35933] RE: [mg35907] How can I write inside the frame.
  • From: "David Park" <djmp at earthlink.net>
  • Date: Thu, 8 Aug 2002 06:06:24 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Sergio,

Use Epilog.

Plot[{Sin[x], Sin[2 x], Sin[3 x], Sin[4 x]}, {x, 0, 1}, Frame -> True,
    Axes -> False,
    ImageSize -> 500,
    Epilog ->
      {Text[Sin[x], {0.2, Sin[0.2]}, {-1, 1}],
        Text[Sin[2x], {0.3, Sin[2 0.3]}, {-1, 1}],
        Text[Sin[3x], {0.9, Sin[3 0.9]}, {1.3, -1}],
        Text[Sin[4x], {0.8, Sin[4 0.8]}, {1.3, -1}]}];

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 

From: Sergio Milo [mailto:milo at dmo.fee.unicamp.br]
To: mathgroup 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.






  • Prev by Date: FindRoot
  • Next by Date: Graphtheory package
  • Previous by thread: Re: How can I write inside the frame.
  • Next by thread: Re: How can I write inside the frame.