Re: Problem with GraphicsColumn
- To: mathgroup at smc.vnet.net
- Subject: [mg100620] Re: [mg100549] Problem with GraphicsColumn
- From: "David Park" <djmpark at comcast.net>
- Date: Tue, 9 Jun 2009 03:57:49 -0400 (EDT)
- References: <9127830.1244441426498.JavaMail.root@n11>
What about:
GraphicsColumn[{Plot[Sin@x, {x, 0, 10}, Frame -> True],
Plot[Cos@x, {x, 0, 10}, Frame -> True]}]
Maybe there is another problem that you haven't mentioned and that doesn't
appear with the example?
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/
From: gyzhou at 139.com [mailto:gyzhou at 139.com]
Hi, guys:
I encounter a problem below:
My aim is to obtain a graphicscolumn for my paper to be submited:
GraphicsColumn[{Plot[Sin@x, {x, 0, 10}, Frame -> True],
Plot[Cos@x, {x, 0, 10}, Frame -> True]}, Alignment -> Right,
ImageSize -> 500, Spacings -> Scaled[-.1]]
However I find the right part of the outcome contains blank space.
If I add two items:
GraphicsColumn[{Plot[Sin@x, {x, 0, 10}, Frame -> True],
Plot[Cos@x, {x, 0, 10}, Frame -> True]}, Alignment -> Right,
ImageSize -> 500, Spacings -> Scaled[-.1], Frame -> All,
FrameStyle -> Opacity[0]]
it works. However when I Export["FIG1.EPS",%,"EPS"] , it inevitably
contains the Frame.
This bother me a lot. Can anyone help me ? Thanks in advance!