I have a problem concerning the ws-procs9x6 document class furnished by a conference.
I can't get it work with the caption & subcaption or even subfig packages to work with it, which is a problem as I can't place my figures in my paper.
Do you know how to make it work?
The error I get is:
Command
\captionboxalready defined. \caption@withoptargs\caption@box}" and "Unsupported document class (or package) detected,(caption) usage of the caption package is not recommended."
Here's a simple code :
\documentclass{ws-procs9x6}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\psfig{file=coucou.eps,width=4.5in}
\caption{Coucou}
\label{fig:coucou}
\end{figure}
\end{document}

subfigis compatible with the class, whilecaption(and sosubcaption) isn't. – egreg Feb 02 '13 at 18:48subfigas\usepackage[caption=false]{subfig}– egreg Feb 02 '13 at 19:04aastexclass, and egreg's answer works there too. – buzjwa Dec 20 '15 at 08:20