How to create a single page PDF file out of multiple EPS files with GhostScript

conversionghostscriptpdf

I'm trying to merge eps files into a pdf file using GS, however, I cannot get it to put multiple eps files without page breaks in between even if original files are small. The command I'm using is:

gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=out_file [list of eps files...]

Best Answer

I decided to write a simple script to generate a tex file that includes eps file arguments (using \includegraphics[width=\columnwidth]{arg1.eps} ...). Then using latex, and dvipdf I can get a pdf file with multiple eps files on a page.

Related Question