cvpr-org/author-kit

How to add two column figure on the first page?

ImmortalSdm opened this issue · 2 comments

I want to add my motivation figure above the abstract, how to make it?

taiya commented

Replace \maketitle with:

\twocolumn[{%
\renewcommand\twocolumn[1][]{#1}%
\maketitle
\includegraphics[width=\linewidth]{fig/teaser.png}
\captionof{figure}{....
\vspace{2em}}
\label{fig:teaser}
}]

Replace \maketitle with:

\twocolumn[{%
\renewcommand\twocolumn[1][]{#1}%
\maketitle
\includegraphics[width=\linewidth]{fig/teaser.png}
\captionof{figure}{....
\vspace{2em}}
\label{fig:teaser}
}]

thx a lot~