How to add two column figure on the first page?
ImmortalSdm opened this issue · 2 comments
ImmortalSdm commented
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}
}]
ImmortalSdm commented
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~