Plotting Linux Workflow

resizing postscript YMMV (your mileage may vary):

$ psresize -W1509 -H905 -h3456 -w2592 original.ps >resized.ps
$ ps2pdf -sPAPERSIZE=archE resized.ps resized.pdf
$ cat resized.pdf | acroread -toPostScript -size 2592x3456 >final.ps
$ gv final.ps

Basically, the final file that you upload should be a single paged PostScript 2 or 3 file, no Encapsulated PostScript, taking into account the actual target page size.

More information is available at PlottingServices.

convert LaTeX to DVI to PS to PDF

$ texi2dvi -o template.dvi template.tex
$ dvips -Ppdf -t letter -G0 -o template.ps template.dvi
$ ps2pdf -dCompatibilityLevel=1.3 -dMaxSubsetPct=100 \
  -dSubsetFont=true -dEmbedAllFonts=true \
  -dAutoFilterColorImages=false -dAutoFilterGrayImages=false \
  -dColorImageFilter=/FlateEncode -dGrayImageFilter=/FlateEncode \
  -dMonoImageFilter=/FlateEncode template.ps template.pdf
$ xpdf template.pdf