
Following is a detailed description on how the KnotPlot script was used to generate the files on this page. Example shown is for letter size paper. See the note (right) about printing to A4 paper. If you're only generating an EPS file for inclusion in another document, then you don't need to worry about setting the pagesize.
Run KnotPlot in non-graphics mode to generate the EPS file.
knotplot -nog < 3feb05d.kps
We now have the file 3feb05d.eps which could be printed directly on a PostScript printer. For printing to a non-PostScript printer, generate a PDF file 3feb05d.pdf from the EPS file 3feb05d.eps using GhostScript.
# Note: enter the following three lines on one command line gs -dCompatibilityLevel=1.3 -q -dNOPAUSE -dBATCH -sPAPERSIZE=letter -sDEVICE=pdfwrite -sOutputFile=3feb05d.pdf -c .setpdfwrite -f 3feb05d.eps
The remainder of this example shows how the preview image seen above was created. This is only useful for including an image on a web page. Printing the EPS or PDF file will give much higher quality than printing the preview image. These files, 3feb05d.eps and 3feb05d.pdf, as well as their counterparts for A4 paper, 3feb05d_a4.eps and 3feb05d_a4.pdf, can be downloaded using the links in the right hand panel on this page.
# run GhostScript to generate a temporary PPM file # Note: enter the following two lines on one command line gs -q -dNOPAUSE -dBATCH -sPAPERSIZE=letter -sDEVICE=ppmraw -sOutputFile=3feb05d.ppm -r200 -f 3feb05d.eps # scale it down pnmscale -xsize 600 3feb05d.ppm > 3feb05dS.ppm # reduce the number of distinct colours ppmquant 32 3feb05dS.ppm > 3feb05dSq.ppm # create the GIF file ppmtogif 3feb05dSq.ppm > 3feb05d.gif # delete temporary files /bin/rm 3feb05d.ppm 3feb05dS.ppm 3feb05dSq.ppm
KnotPlot script that generated the Encapsulated PostScript (EPS) file:
% KnotPlot script: 3feb05d.kps load 3.1 psop phantom .4 pszinfo = t cyl=.8 ncur=2 nseg=7 psmode=13 psop patch X psout orange draw broke cyl=.3 broff=.4 psmode=2 psback=f pshollow=.5 ncur=2 nseg=7 psop patch Patch psout blacksquares .merge-psout --delete orange blacksquares 3feb05d % End of KnotPlot script
This script generates a EPS file (download below) suitable for printing on letter size paper. For printing on A4 size paper, use the command psop pagesize a4 prior to the psout command.
Download a high quality PDF or EPS file (for either letter or A4 size paper):
The PDF files and the preview image seen on this page were generated from the EPS files using Ghostscript (details in left panel on this page).