Re: postscripts with multiplot on a Mac [message #78907] |
Thu, 12 January 2012 07:13 |
wlandsman
Messages: 743 Registered: June 2000
|
Senior Member |
|
|
What do you mean that Mac ps viewers fail to correctly open the ps files? Do you mean that the files don't open at all, or that they open but don't look correct?
I doubt that multiplot (which just sets the plot positions) has anything do with your postscript problems, and that the problem is elsewhere in your program that uses multiplot, or in the way you are opening and closing PS files.
The following program works on my Mac ( { x86_64 darwin unix Mac OS X 8.1 Mar 9 2011 64 64}
and displays correctly with Preview: --Wayne
set_plot,'ps'
multiplot,[2,1]
plot,indgen(10)
multiplot
plot,indgen(20)
multiplot,/reset
device,/close
|
|
|