2

In my work, I frequently use the "CopyAsMetafile" and "Paste" function in my Word document. Recently, I started working with Mathematica version 10 and negatively surprised that the display of metafile object pasted (graphics, text, etc) has a much lower quality than had version 9. Is there any way to improve visualization object pasted?

Verbeia
  • 34,233
  • 9
  • 109
  • 224

1 Answers1

4

I think this is the problem you are talking about (screen shot from Word):

enter image description here

In Mathematica 9, the line thickness was less so it looked like this:

enter image description here

One thing you could try is to set the line thickness explicitly in Mathematica 10:

Plot[Sin[x], {x, 0, 10}, PlotStyle -> AbsoluteThickness[0]]

Then, it will look like this in Word:

enter image description here

Which is closer to what you might want.

Arnoud Buzing
  • 9,801
  • 2
  • 49
  • 58