| Author |
Comment/Response |
Nasser M. Abbasi
|
12/13/12 02:52am
Is this what you mean?
screen shot
http://12000.org/tmp/121212/image.png
code (Version 9)
Grid[{
{
Plot[Sin[x], {x, 0, 2 Pi},
AxesLabel -> {"x", "very very loooooooong"},
ImageSize -> {200, 150}, ImagePadding -> {{50, 20}, {40, 30}}]
},
{
Plot[Sin[x], {x, 0, 2 Pi}, AspectRatio -> 1/3,
AxesLabel -> {"x", "shrt"}, ImageSize -> {200, 140},
ImagePadding -> {{50, 20}, {40, 30}}]
}
}, Spacings -> {0, 0}, Frame -> All
]
OR
GraphicsColumn[{
Plot[Sin[x], {x, 0, 2 Pi},
AxesLabel -> {"x", "very very loooooooong"},
ImageSize -> {200, 150}, ImagePadding -> {{50, 20}, {40, 30}}]
,
Plot[Sin[x], {x, 0, 2 Pi}, AspectRatio -> 1/3,
AxesLabel -> {"x", "shrt"}, ImageSize -> {200, 140},
ImagePadding -> {{50, 20}, {40, 30}}]
}
]
--Nasser
URL: , |
|