I posting this question but once I posted in this topic ''LaTeX - Image not showing up'' I have bben told that to create new question that everyone can see.
I have a problem with .eps format when I want to convert my text form TeXworks to pdf file. I always get the blank rectangle with name of the image! I removed draft, and I am using IEEEconfran template. Here is the results:
Thanks a lot in advance!
.epsdoes not work withpdfdirectly. It seems that you have enabled thedraftoption either of your documentclass or of\usepackage{graphicx}or it is some setting withTeXWorks– Jan 08 '17 at 15:28epspdf, with optionCompute tight bounding box. – Bernard Jan 08 '17 at 15:39[draft]option which suppresses the image inclusion and just prints the filename. – David Carlisle Jan 08 '17 at 17:07\documentclass[conference]{IEEEtran} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics[width=\columnwidth]{somefigure} \caption{Figure} \end{figure} \end{document}, and also using all your other mentioned packages except for epstopdf, since it's not required in modern TeX installs. Start with a blank, minimized IEEEtran document with your figure. See if it builds correctly. If not, post that MWE as an edit to your question. – Mike Renfro Jan 08 '17 at 20:49epstopdfpackage as well, but I don't use it myself. If addingepstopdfmakes my small document compile, then my previous advice still applies (start adding back a few commands at a time to see where the problem starts happening). – Mike Renfro Jan 10 '17 at 03:08