I am trying to add a long table of figures into latex. I am able to successfully add in \documentclass[12pt]{article}.
But when I try adding it in the following document class, I get error:
\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
Error:
**Package longtable error: longtable not in 1-column mode \begin{longtable}**
The code for table I created is:
\begin{center}
\begin{adjustwidth}{-10cm}{}
\begin{longtable}{ccp{5cm}|}
\caption{results}\label{tab:support}\\
%Row1 __________________________________________________________________________
Image & result &My comments \\
\raisebox{-.5\height}{\includegraphics[width=140px,height=120px]
{Images/support/rgb_000938.eps}}
&\raisebox{-.5\height}{\includegraphics[width=200px,height=150px]
{Images/support/region_000938_1.eps}} & xxxx \\
\newline
\end{longtable}
\end{adjustwidth}
\end{center}

longtabledoesn't work as of now. You may usesupertabularinstead. – Jan 20 '13 at 07:08