Skip to content

Instantly share code, notes, and snippets.

@ami-GS
Created January 16, 2014 07:37
Show Gist options
  • Save ami-GS/8451117 to your computer and use it in GitHub Desktop.
Save ami-GS/8451117 to your computer and use it in GitHub Desktop.
LaTeXでeps画像を使いPDFにすると画像がズレる原因を修正
#!/bin/sh
for FILE in *eps
do
IN=${FILE%.eps}
ps2pdf -dEPSCrop -dPDFSETTINGS=/prepress $IN.eps $IN.pdf
pdf2ps $IN.pdf $IN.eps
rm $IN.pdf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment