| Original Message (ID '142900') By Nasser M. Abbasi: |
| To have same size images, use the ImageSize option
SetOptions[Plot, {Axes -> False, Frame -> True, ImageSize -> 300}];
rys1 = Plot[x^2, {x, -2, 2}, FrameLabel -> {{"Hej", "Hej hej"}, {"Hej hej", "Hej hej"}}]
rys2 = Plot[x^3, {x, -2, 2}, FrameTicks -> {None}]
GraphicsGrid[{{rys1, rys2}}, Frame -> All, Spacings -> {5, 5}, Alignment -> Center]
|
|