I am writing a double-columned article. I am having a problem that one particular figure covers some of the text above and another figure across the column. See following picture:
I did a lot of search, but all talk about making the figure "background". Well I don't want to make it background, I would just like to "send it to the back".
How can I make this particular figure "under" the text above, and the figure across the column? Thanks a lot.
Here is my figure insertion code:
\vspace{-1cm}
\begin{figure}[h]
\hspace{-0.9cm}
\vspace{-1cm}
\includegraphics[scale=0.27]{../figures/lin_regression.png}
\caption{Regressions of phase rolls.}
\label{fig_lin_regression}
\end{figure}

clipoption to trim the figure not use negative space – David Carlisle Nov 20 '18 at 19:29[h]it makes it highly likely that the figure floats to the end of the document, usually latex warns and changes it to[ht]but[htp]is better – David Carlisle Nov 20 '18 at 19:32scale=0.27butwidth=\linewidththat ensure that you image will fit perfectly in the column, whatever the original image size, and without using any\hspace. – Fran Nov 20 '18 at 20:32