using TeXShop in OS X Maverick, a simple subfigure script is returning "undefined control sequence". Although I can bypass it and still generate the image-included pdf by typing "s" to "ignore all" (of the warnings), I would still like to know the cause and fix for this. Thanks!
The sample script is:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htdp]
\begin{center}
\subfigure{\includegraphics[width=0.3\textwidth]{fig1}}
\subfigure{\includegraphics[width=0.3\textwidth]{fig2}}
\end{center}
\end{figure}
\end{document}
\usepackage{subfigure}to the preamble. Notice, however, that this package is obsolete; you should usesubfigorsubcaptioninstead and change to the syntax for those packages. – Gonzalo Medina Jul 16 '14 at 03:45subcaption, see the first code in http://tex.stackexchange.com/a/37597/3954. – Gonzalo Medina Jul 16 '14 at 03:58