ps2pdf
. To batch convert several EPS files in your current directory, do the following at a command line prompt:
FILES="*.eps"
for f in $FILES; do ps2pdf -dEPSCrop $f; done
This will convert all your EPS files to PDF and ensure that they are cropped properly. If you actually prefer to use an entire A4 (or letter size) page for your figure, leave out the
-dEPSCrop
flag.