I receive two errors when using \includegraphics command in pdflatex. I've never seen these particular errors discussed/answered before.
I have the following MWE (this is all I have in the document so far):
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[scale=0.92]{box.png}
\hspace{0.5in}\parbox{6in}{\caption{Box comparing two methods \label{box}}}
\end{center}
\end{figure}
\end{document}
where box is the figure to be included. There are two errors produced. Both of them say the following:
! Undefined control sequence.
recently read \ltx@zapspace
I do not know what these errors mean. I assume they have something to do with \ltx@zapspace. I appreciate any help or clarification of this error or how to correct it.

\ltx@zapspaceis defined by theltxcmdspackage. You could load that. However, your example compiles for me (with another image). – Stefan Kottwitz♦ Nov 27 '12 at 15:55pdftex.defalready contains\RequirePackage[2010/12/07]. This is not accidentally the version that introduces\ltx@zapspace. – Heiko Oberdiek Nov 27 '12 at 16:10