home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / graphics / gnuplotAI.README < prev    next >
Encoding:
Text File  |  1994-01-07  |  1.9 KB  |  47 lines

  1.  
  2.  
  3. Here are the modified files for gnuplot3.0 to incorporate support for Adobe Illustrator 3.0 output.  Basically, I have added the terminal type aifm that outputs the basic commands necessary for AI to be able to open the file.  Note that the code does _not_ output the appropriate Postscript prolog to allow printing of the file.  In order to print the file out to a PS printer, it is necessary to open the file with AI, then save it again.  If you want Postscript output, I suggest using the Postscript terminal type.
  4.  
  5. Also, since AI does not really support multiple pages, multiple graphs will be output directly on one another.  However, each graph will be grouped individually, making it easy to separate them inside AI (just pick them up and move them).
  6.  
  7. Here is an example session:
  8.  
  9. augustus:/Users/ray/gnuplot3.0%gnuplot                     
  10.  
  11.         G N U P L O T
  12.         unix version 3.0 
  13.         patchlevel 0, Sep 29 91
  14.         last modified Sun Sep 29 16:56:36 1991
  15.         Copyright (C) 1986, 1987, 1990, 1991  Thomas Williams, Colin Kelley
  16.  
  17.         Send bugs and comments to bug-gnuplot%pixar.uucp@sun.com
  18.  
  19. Terminal type set to 'x11'
  20. gnuplot> set term aifm
  21. Terminal type set to 'aifm'
  22. Options are 'monochrome "Times-Roman" 14'
  23. gnuplot> set out 'Test.ai'
  24. gnuplot> plot sin(x),cos(x)
  25. gnuplot> plot tan(x)
  26. gnuplot> quit
  27. augustus:/Users/ray/gnuplot3.0%open Test.ai
  28.  
  29. What you will see is the two plots superimposed.  Simply pick one up and move it aside.
  30.  
  31. If you wish to use Courier size 20, type:
  32.  
  33. set term aifm "Courier" 20
  34.  
  35. If you wish color output,
  36.  
  37. set term aifm color
  38.  
  39.  
  40. I would appreciate any comments you may have.  This is really a crude first pass that I tossed together to see if it could be done.  Future enahncements include adding the AI prolog so that the files are directly printable on PS printers, and perhaps some more intelligence regarding multiple page plots.
  41.  
  42.  
  43. Ray Ghanbari
  44.  
  45. ray@mtl.mit.edu
  46.  
  47.