How to convert figures from .eps to .pdf?

Post date: Aug 31, 2011 1:41:48 PM

How to convert figures from .eps to .pdf?

  • single figure: epstopdf figure.eps –> this works both on Linux [link] and Windows
  • multiple figures on Ubuntu–this will run epstopdf on all .eps files in current directory and all subdirectories:

blahblah$ find . -name “*.eps” -exec epstopdf {} \;

for more information please refer to [link]

  • multiple figures on Windows–[link]