MathGroup Archive 2001

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

Search the Archive

Re: Inserting Text Lines into GraphicsArray?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg30292] Re: Inserting Text Lines into GraphicsArray?
  • From: Tom Burton <tburton at cts.com>
  • Date: Sun, 5 Aug 2001 16:18:36 -0400 (EDT)
  • References: <9ki36f$ke7$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hello,

On Sun, 5 Aug 2001 00:15:11 +0000 (UTC), in comp.soft-sys.math.mathematica you wrote:

>Any simple way to insert lines of text between rows in a GraphicsArray?
>
>(Objective is to put title lines above rows, or text labels like "(a)", 
>"(b)", "(c)" underneath rows.  I suppose I could generate a wide graphic 
>with nothing but the text in it, and a small AspectRatio, and insert it 
>as an additional row; but might there be an easier way?)

I was just doing something like this. The small-AspectRatio trick didn't work for me: The space is still full-sized because GraphicsArray reserves a block of space of the same size and shape for every graphic in the array.

Here are a three more useful actions:

(1) Use PlotLabel for text over the graphic. Hint: "PlotLabel" can be specified for any individual Graphic as well as GraphicsArray.

(2) If you have not already set up a frame for graphic, then use the options, Frame->True and FrameLabel->{<lower label>, None, <upper label>, None}. Hint: You can have both Axes->True and Frame->True; normally makes a mess, but can be useful here.

(3) You can place Text anywhere, including over or under. Hint: Place Text inside Prolog or Epilog in a high-level graphic from Plot, etc.

Hope this helps.

Tom Burton


  • Prev by Date: Re: "Limit involving square root"
  • Next by Date: Export : LinkConnect::linkc: <1> is dead; attempt to connect failed.
  • Previous by thread: RE: Inserting Text Lines into GraphicsArray?
  • Next by thread: Re: Inserting Text Lines into GraphicsArray?