How to generate a PostScript file of a graph from Mathematica (Unix version) ?
In Mathematica (Unix version), if you type Plot[Sin[x], {x,0,2Pi}] , you will get the graph shown on screen. To generate a PostScript file of this graph, you should type Display[ “MyGraph.math-ps”, Plot[Sin[x], {x,0,2Pi}] ] Then, a file named MyGraph.math-ps will be generated. However, this file is NOT a valid Postscript file since it contains lot of macros which can be read by Mathematica only. To make this Postscript file to be recognized by others, we need to use the psfix utility (comes with Mathematica) to fix it. For example kernel:/users/stf/keith> psfix MyGraph.math-ps > MyGraph.ps Then, a valid Postscript file called MyGraph.ps will be generated.