When adding rotated insets to an empty plot in Mathematica 10, the text looks fine:
And when adding them to a ListPlot, the text also looks fine:
Add them to a RegionPlot, however, and they look awful!
I tried the FontOpacity -> 0.999 trick mentioned here, but it does not make the text unblurry. Anyone know what to do here? Code below:
lbfs = Range[-5, 0];
Show[
(*Graphics[{}]*)
(*ListPlot[{{4, -3}, {7, -1}}, Joined -> True, Axes -> False]*)
RegionPlot[x y>-10,{x,3,8},{y,-5,0}],
PlotTheme -> "Classic", ImageSize -> 500, Frame -> True,
PlotRange -> {{3, 8}, {-5, 0}},
FrameStyle ->
Directive[FontSize -> 18, FontFamily -> Times, Black,
AbsoluteThickness@1], FrameLabel -> {"x", "y"},
PlotRangePadding -> 0,
Epilog ->
Table[Inset[
Rotate[Style[Text@Superscript[10, lbfs[[i]]], FontSize -> 14,
FontFamily -> Times],
10. \[Degree]], {4 +
2 (i - 1)/(Length@lbfs - 1), -3.5 + (-0.65) (i - 1)/(
Length@lbfs - 1)}], {i, Length@lbfs}], AspectRatio -> 1]




lbsf. – David G. Stork Jan 28 '16 at 20:07PlotStyle -> Opacity[1]to the region plot? – Simon Woods Jan 28 '16 at 21:35Overlayoption really the only way out? Seems like a bug to me. – Guillochon Jan 29 '16 at 13:46