MathGroup Archive 2001

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

Search the Archive

RE: Row spacing in GraphicsArray

  • To: mathgroup at smc.vnet.net
  • Subject: [mg28090] RE: [mg28056] Row spacing in GraphicsArray
  • From: "Wolf, Hartmut" <Hartmut.Wolf at t-systems.de>
  • Date: Fri, 30 Mar 2001 04:12:43 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com


> -----Original Message-----
> From: Jonny Wilson [mailto:jonny at jonny.com]
To: mathgroup at smc.vnet.net
> Sent: Thursday, March 29, 2001 10:24 AM
> To: mathgroup at smc.vnet.net
> Subject: [mg28090] [mg28056] Row spacing in GraphicsArray
> 
> 
> Is there a way of independently adjusting the spaces between pairs of 
> adjacent rows in a GraphicsArray? (The option GraphicsSpacing 
> can only 
> set all of the row spaces to the same value.)
> 

Jonny,

you may apply GraphicsArray iterated, and thereby specify different
spacing:

g = Plot[{Sin[x], Cos[x]}, {x, 0, 2*Pi}, 
   PlotStyle -> {Hue[0], Hue[0.6]}]
 
g2 = GraphicsArray[{{g, g}, {g, g}}, 
   GraphicsSpacing -> 0.]
 
Show[GraphicsArray[{g2, g2}, GraphicsSpacing -> 0.1]]

-- Hartmut



  • Prev by Date: Re: Accessing Help Causes the Front End to Quit?
  • Next by Date: Re: Unconventional Max[] behavior
  • Previous by thread: RE: Row spacing in GraphicsArray
  • Next by thread: Re: Row spacing in GraphicsArray