1

I am trying to write EPS scripts.

%!
100 100 moveto
/Symbol 12 selectfont (p ) show
/Times-Roman 12 selectfont (is less than 4) show

I suspect that beginning the script with %! is not correct, or sufficient. Unfortunately, I cannot find recent documentation, so I am unsure what eps scripts begin with.

j0h
  • 15,365

1 Answers1

2

Put the above lines in a file 'program.eps' and run the following command

evince program.eps

Evince will open up and render 'program.eps'. If you are missing 'evince' install it with:

sudo apt-get install evince
jhilmer
  • 1,213