I have problem: I would like to put a side caption on a subfigure. Here is my actual code (that doesn't perform the side caption):
\begin{figure}[H]
\begin{center}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}\\
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}\\
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}\\
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}\\
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}
\subfigure[\footnotesize{...}]{
\label{...}
\includegraphics[width=0.25\textwidth]{...}
}\\
\end{center}
\caption{"I would like that this text is put on the side of the image"}
\label{...}
\end{figure}
Where I put "..." is text that I delete.
I tried with the sidecap package and edit the environment with SCfigure instead of figure, but this gives me a lot of errors.

