I'm currently working on a paper for an ACM conference and they require me to use the sigplanconf.cls
I want to use subcaption, but if I add
\usepackage{caption}
\usepackage{subcaption}
then I get the following messages :
Package caption Warning: Unsupported document class (or package) detected,
(caption) usage of the caption package is not recommended.
[...]
! Package caption Error: No float type 'copyrightbox' defined.
Anyone encounter that problem ? Is there a fix that doesn't require messing with the cls since I'm supposed to use it as is ?
Full MWE :
\documentclass[10pt]{sigplanconf}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\conferenceinfo{XXX '13}{Date, Place.}
\copyrightyear{2013}
\copyrightdata{[numbers] \copyright2013 IEEE}
\title{Title Text}
\subtitle{Subtitle Text, if any}
\authorinfo{Name1}
{Affiliation1}
{Email1}
\maketitle
test
\end{document}
documentclasshas its own way of defining thecaptioncommand – cmhughes Dec 12 '12 at 04:30