Re: Extra spacing in GraphicsGrid
- To: mathgroup at smc.vnet.net
- Subject: [mg83451] Re: Extra spacing in GraphicsGrid
- From: Thomas E Burton <tburton at brahea.com>
- Date: Wed, 21 Nov 2007 02:41:20 -0500 (EST)
Hello, It seems to me that GraphGrid's default option AspectRatio->Automatic is not working well. You're getting a square grid of elements, each with aspect ratio 2; hence the big horizontal spaces. Try GraphicsGrid[{{g1,g2}},Spacings->{30,0},AspectRatio->2] Tom > In the code below, I'm trying to position two Graphics next to each > other. However, I get excessive spacing between two graphics object > even if I set Spacing to {0,0}. The problem goes away if I > Rasterize the Graphics objects. However that is suboptimal because > I need to keep the original graphics structure. ...