This is a simple plot, it looks fine in Mathematica. But after exporting it to pdf file, the display of vertical frame label has an error. The "33" in the subscript "epsilon33" becomes somewhat a superscript. It appears this error only occurs on vertical label with Greek letter as subscript. Assume the following simple plot
Plot[x, {x, 0, 1},
Frame -> True,
FrameLabel -> {
Style["\!\(\*SubscriptBox[\(a\), \(\[Epsilon]33\)]\)", 20],
Style["\!\(\*SubscriptBox[\(a\), \(\[Epsilon]33\)]\)", 20]
}]
(Note that the Style is not related and is only for making the bug better visible)
This is the plot in Mathematica
In the exported pdf file, the label on the y-axis (and we should emphasis that it is only this vertical label!) of the frame has somehow turned the "33" into a superscript:
I use 10.0 version on Window 7 system and halirutan can confirm this behaviour on Mac OS X with Mathematica 10.0.2.


Rotate[Style["\!\*SubscriptBox[\(a\), \(\[Epsilon]33\)]\)", 20],Pi/2]as x-label, the subscript is destroyed as well. And when you use a normal character likebinstead of epsilon, it works. – halirutan Jan 07 '15 at 09:44