Journals are very strict and some of them require special formats. They suggest the .tiff or .jpg format for graphics with many colors. I have problem how to export, for example, this figure consists of 4 smaller but to have optimized quality (Labels to be with correct size of fonts, viewable) and not with large file size.
plot1 = Plot3D[Sin[4 x]*Cos[4 y], {x, -2, 2}, {y, -2, 2},
PlotLabel -> "number 1, gamma, s=1,q=2", AxesLabel -> {x, y},
ColorFunction -> "NeonColors"];
plot2 = Plot3D[Sin[3 x]*Cos[4 y], {x, -2, 2}, {y, -2, 2},
PlotLabel -> "number 1, gamma, s=2,q=2", AxesLabel -> {x, y},
ColorFunction -> "NeonColors"];
plot3 = Plot3D[Sin[2 x]*Cos[4 y], {x, -2, 2}, {y, -2, 2},
PlotLabel -> "number 1, gamma, s=3,q=2", AxesLabel -> {x, y},
ColorFunction -> "NeonColors"];
plot4 = Plot3D[Sin[1 x]*Cos[4 y], {x, -2, 2}, {y, -2, 2},
PlotLabel -> "number 1, gamma, s=4,q=2", AxesLabel -> {x, y},
ColorFunction -> "NeonColors"];
GraphicsGrid[{{plot1, plot2}, {plot3, plot4}}, Frame -> True]
Export,JPGandTIFFin the documentation center? What didn't work about the examples there? There's also File > Save Selection As in the menu. – Michael E2 Feb 13 '14 at 13:48finalplot=GraphicsGrid[...]andExport["path/image.jpg",finalplot]? I get this. – Öskå Feb 13 '14 at 13:49ImageResolution -> 600? – Michael E2 Feb 13 '14 at 13:54ExportandStyle:) I usually don't use the basicExportwhen I do it "for me", the question is quite foggy since there is no real question apart from the comments :) – Öskå Feb 13 '14 at 13:56PlotLabel -> Style["YourText", "YourFont"]. But like Michael said, it's in the documentation, and theExporthas been treated lots of time on here. – Öskå Feb 13 '14 at 14:00FontFamily, but the number of pixels in the image is connected to the grainy quality of the rendered font.ImageResolutionis one way to control the resolution of the image. :) – Michael E2 Feb 13 '14 at 14:00Rasterizeand specifyRasterSize. – rhermans Feb 13 '14 at 14:01"ImageSize" -> 3000– george2079 Feb 14 '14 at 18:58