When I copy a cells by selecting them from the collapse bars on the right, then using the context menu option "Copy", the pasted image of plots is not anti-aliased and in general the text seems to have bad styling compared to a screen. For example, here is a plot which is copied using the built-in copy command:
Manipulate[Plot[Cos[a x], {x, 0, 3 \[Pi]}], {a, 1, 10, 0.3}]
and here is a screen shot of the same command and plot:
As you can see the screen shot looks a lot better. For example, compare the graphical quality of the buttons in the animation panel.
Answer
The output is being copied as a metafile. To get the nice anti-aliased image, use Copy As Bitmap on the Edit menu.
Comments
Post a Comment