Search code examples
postscripteps

Combine several ps/eps figures into one


I have several ps/eps figures. They are generated in a time loop, each with the same size. How can I combine them into a single ps/eps file? So I can view all of them in gsview by clicking "next page". I prefer a single file like a.eps, rather than a1.eps, a2.eps......


Solution

  • Try something like this:

    gs -dBATCH -dNOPAUSE -q -sDEVICE=epswrite -sOutputFile=out.eps *.eps

    It should take all the eps files and create a new one called out.eps with all of them in it.