MathGroup Archive 1999

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Saving in EPS Format

  • To: mathgroup at smc.vnet.net
  • Subject: [mg20820] Re: Saving in EPS Format
  • From: "DIAMOND Mark" <noname at noname.com>
  • Date: Wed, 17 Nov 1999 03:40:35 -0500 (EST)
  • Organization: The University of Western Australia
  • References: <80qv8i$kua@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

>I'm new to Mathematica.  I generated a plot that I'd like to save as an
>EPS file and import into my LaTeX document

I do not use the notebook menu commands to generate my EPS pictures because
I have experienced to many problems with it. I use, for instance

plotToBeSaved=Plot[x,{x,0,1}];

Export[nameOfTheEPSFile, plotToBeSaved, "EPS"]

which works just fine. nameOfTheEPSFile should be a string with a valid name
on whatever system you are using. On Windows, for instance, the command will
be.

Export["c:\\mydocs\\myplot.eps", plotToBeSaved, "EPS"];

Be warned, as I have pointed out in this newsgroup before, what you see on
the screen is NOT exactly what you get in your EPS file. Furthermore, the
EPS file includes masks which do not of themselves cause problems for LaTeX,
but are responsible for some of the appearance differences.






  • Prev by Date: Re: Graphing 4D functions
  • Next by Date: Re: Saving in EPS Format
  • Previous by thread: Re: Saving in EPS Format
  • Next by thread: Re: Saving in EPS Format