Others ⇒ Remake PDF from EPS
Remake PDF from EPS
I hope I'm posting this in the right section:
I'm using PDFLaTeX (3.141592-1.30.4-2.2) on a Mac with OS 10.4.11 and TeTeX (old, I know). When building documents pdflatex --shell-escape is converting EPS figures to PDF every time, even when the PDF has a newer time stamp than the EPS version. I thought --shell-escape would stop this from happening? The document is my thesis and has *alot* of figures so it's really slowing down the build ... can anyone help?
Cheers
Matt
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Remake PDF from EPS
If you want to use the PDF files instead of the EPS files, change the includegraphics commands to something like this:
Code: Select all
% old version
% \includegraphics[options]{figure.eps}
% new version
\includegraphics[options]{figure}
Code: Select all
SHELL=/bin/bash
pdfs := $(patsubst %.eps,%.pdf,$(wildcard *.eps))
update-pdfs : $(pdfs)
%.pdf : %.eps
epstopdf $<