For the question How to place a "banner image" at the top of a paper the solution was to use a center environment to create a non-floating figure:
\documentclass{acmtog}
\usepackage{graphicx}
\usepackage[caption=false,format=hang]{subfig}
\makeatletter
\newcommand*\captiontype[1]{\def\@captype{#1}}
\makeatother
\begin{document}
\def\BannerFigSize{.25}
\begin{center}
\captiontype{figure}
\subfloat[a.]
{
\fbox{\rule{0pt}{1in} Some text \rule{1in}{0pt} }
\label{fig:banner:scene}
}
\subfloat[b.]
{
\fbox{\rule{0pt}{1in} Some text \rule{1in}{0pt} }
\label{fig:banner:strokes}
}
\caption{Our algorithms.}
\label{fig:banner}
\end{center}
\end{document}
However, unlike figure*, center* is not a valid operator to span columns. Is there a way to make this center environment span two columns?
centeror the other content. You simply need to switch to one-column mode for the banner. See How can I place a one-column-abstract in a two-column document?, which should be helpful. – Martin Scharrer May 01 '12 at 17:18