I need to write a paper with two columns so I am using \begin{multicols}{2}. However, I had a problem while putting figures in this report. So I searched and I found this :
\newenvironment{Figure}
{\par\medskip\noindent\minipage{\linewidth}}
{\endminipage\par\medskip}
I am using it because I don't know why figure* does not work here...
So now, when I want to include a figure in my report I am doing this:
\begin{Figure}
\centering
\includegraphics[scale=0.4]{pictures/tab_corr.png}
\captionof{figure}{}
\label{fig:corrplot}
\end{Figure}
However, for some pictures, it leaves a huge blank space between the text and the figure and I don't know how to remove it.
Thanks for answering me !
Figureenvironment is one I have used in the past and it just puts the contents inside a minipage, and so there is no floating behaviour, and sometimes this leads to large whitespace, because unlike a paragraph, a figure cannot be broken or split over the two columns. – oliversm May 04 '20 at 15:46wrapfig, albeit I haven't doe it myself, the 3rd bullet on page 1 says this is possible. – oliversm May 04 '20 at 15:52