I've produced some plots that have fractional tick labels on the horizontal axis and they look fine.
Plot[Sin[x], {x, 0, 2 Pi},
Ticks -> {Range[0, 2 Pi, Pi/6], {-1, 0, 1}}]

However, when I export the plot with
Export["Graph2.jpg",drag graph picture here, ImageResolution->300]
the fraction alignment goes off.

Is there a way to keep the fraction alignment the same in a jpg?

Export["test.jpg", plot]looks normal for me with v8.0.4 linux – ssch Sep 23 '13 at 16:51@user. Otherwise the addressee will not be pinged – Dr. belisarius Sep 23 '13 at 17:05plot = Plot[Sin[x], {x, 0, 2 Pi}, Ticks -> {Range[0, 2 Pi, Pi/6], {-1, 0, 1}}]– Dr. belisarius Sep 23 '13 at 17:07Export["Graphics2.jpg", First@ImportString[ExportString[plot, "PDF"]], ImageResolution -> 300]However you might find theImageSizeoption satisfactory to avoid that mess – ssch Sep 23 '13 at 18:10