I read here that you cannot add a \begin{figure} inside of the optional argument for \twocolumn.
I want to add a row that contains 3 images in a twocolumn document.
\twocolumn[{
\begin{@twocolumnfalse}
\maketitle
\begin{figure}[h]
\fbox{\includegraphics{fig1.pdf}}
\hspace{30px}
\fbox{\includegraphics{fig2.pdf}}
\hspace{30px}
\fbox{\includegraphics{fig3.pdf}}
\caption{this is the caption}
\label{materialflowChart}
\end{figure}
\begin{abstract}
\end{abstract}
\end{@twocolumnfalse}
}]
Since I cannot use \begin{figure} to create my figure, how would I create a row of figures to add inside the \twocolumn ?

'\begin{figure*}...\end{figure*}work perhaps? – May 17 '16 at 14:03\begin{figure}part and just use\includegraphicsand that worked. – martin36 May 17 '16 at 14:09twocolumnoption mode only, but not for\twocolumncommand – May 17 '16 at 15:31