Jul 08
Including eps files in pdfLaTeX
By default, you cannot include eps files in latex files complied and built into pdfs. To do so, include the following command in your preamble
\usepackage{epstopdf}
which converts any eps files to pdf before the file is compiled. I encountered some problems after this and had to modify the TeX->PDF commands in TeXNicCenter (hit Alt+F7) so that under “Command line arguments to pass to the complier” read:
--enable-write18 -interaction=nonstopmode "%pm"
