I tried to use \munepsfig in my document, no error, no warning.
Just my image doesn't show, what could be actually wrong? Which file should I check to know the problem?
Anyway, I use a template given by someone else, it worked perfectly, this happened when I change the image.
Edit: just found out that \munepsfig{} is actually a new command, but no other than \begin{figure}\includegraphics{}\end{figure}, but it still didn't show (when I just use the normal figure), is there something wrong here?
The example I had:
\documentclass[11pt, a4paper]{memoir}
\usepackage{graphicx}
\begin{document}
\chapter{testing}
\begin{figure}[h]
\includegraphics[scale=0.4]{logo2.eps}
\caption{testing}
\end{figure}
\end{document}
\includegraphicshas to go inside afigureenvironment: it's not true. Your problem might be in incompatible formats for the figure: latex accepts only eps, while pdflatex doesn't (and accepts png, jpg and pdf). – egreg May 10 '11 at 23:22begin{figure}\includegraphics{file.eps}\caption{File}\end{figure}. The caption was there, the area was there, but the image wasn't, it's just a blank, white screen on the area that should be filled with the image – zfm May 11 '11 at 9:20.epsfile here) – zfm May 11 '11 at 20:54\includegraphics[scale=0.4]{logo2.eps}, but the link leads to a file calledlogo.eps. Incorrect filenames can cause the problem you describe if TeX is running in nonstop mode. – Ian Thompson May 13 '11 at 0:04