Re: Plots combining
- To: mathgroup at smc.vnet.net
- Subject: [mg128763] Re: Plots combining
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Sat, 24 Nov 2012 02:26:26 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
On 11/23/12 at 3:25 AM, kalaipiotrek at gmail.com wrote:
>for a long time I can not solve a simple problem with plots
>combining.
>I have two plots:
>fig1 = Plot[x^2, {x, -2, 2}, Axes -> False, Frame -> True,
>FrameLabel -> {{"Hej", "Hej hej"}, {"Hej hej", "Hej hej"}}]
>fig2 = Plot[x^3, {x, -2, 2}, Axes -> False, Frame -> True,
>FrameTicks -> {None}]
>I am trying to combine them with a following command
>GraphicsGrid[{{rys1, rys2}}]
>I do not know how to align these two frames and how to make their
>sizes to be equeal.
A quick but not really elegant way would be to define fig2 as:
fig2 = Plot[x^3, {x, -2, 2}, Axes -> False, Frame -> True,
FrameTicks -> {None}, FrameLabel -> {{"", ""}, {"", ""}}]