I am trying to place an image in the horizontal center of a two-column document.
I tried:
\subsection{title}
\begin{center}
\begin{wrapfigure}{}{}
\includegraphics[width=0.4\textwidth]{FIGURE.jpg}
\end{wrapfigure}
\end{center}
but this does not work. Any ideas of how to do it ?
EDIT:
Thanks to @Bernard, I tried: (you have to include \usepackage{cuted} )
\begin{strip}
\begin{figure*}[h]
\centering
\includegraphics[width=0.4\textwidth]{FIGURE.jpg}
\caption{caption}
\label{label}
\end{figure*}
\end{strip}
...but it does not work
figure*environment (note that it will be placed at the top of the following page). – Bernard Jan 13 '19 at 13:50stripenvironment, fromcuted(sttoolsbundle). – Bernard Jan 13 '19 at 13:54figure*environment:stripis not a floating environment, so you should use\captionof{figure}{label}.(load thecaptionpackage). After that, it should work. – Bernard Jan 13 '19 at 15:11wrapstuff.sty. Currently, the documentation is only in Chinese (though it is possible to see how to use the package) and the package is labelled as experimental. You also need to have an absolutely up-to-date LaTeX installation for this to work. It does work in the simple examples I tried. Quite magical. – sgmoye Jul 22 '22 at 15:45