I am including some illustrations in the figure environment so that they float properly and so I can caption them, but I don't want the counter. Is there a way to suppress this?
\documentclass{memoir}
\usepackage[demo]{graphicx}
\usepackage{float}
\newfloat{illustration}{thp}{lop}
\begin{document}
\begin{illustration}
\begin{center}
\includegraphics[width=3.5in,height=5in]{image001}
\caption{{\large \textbf{Caption}}}
\end{center}
\end{illustration}
\end{document}
newfloatyou don't need the packagefloat. – Marco Daniel Apr 27 '12 at 21:27