Created
January 16, 2014 07:37
-
-
Save ami-GS/8451117 to your computer and use it in GitHub Desktop.
LaTeXでeps画像を使いPDFにすると画像がズレる原因を修正
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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