I need to fit an image into the second column of my document, but for some reason it keeps moving to the second page rather than in the second column.
*Here's my code:
Texttexttexttext
\begin{figure}[H]
\centering
\includegraphics[width=6.5cm]{image.png}
\caption{Current caption}
\label{fig:figure2}
\end{figure}
Here's my LaTeX document currently:
I did some of my research on the Latex stack exchange on two column images. I visited this page: Fit an image a two-column style, but even after I tested that out, the image's position didn't get any better - it actually moved down to the middle of the second page. When I used \begin{figure*} ...\end{figure*}, as suggested by Place Image into two column LaTeX, the image moved to the center instead of on the first page right below my text. I added a [H] after the {figure*}, and the image disappeared completely.
I visited these links: Overleaf Tutorial on Positioning Figures and How to influence the position of float environments like figure and table in LaTeX?. For the placement specifier, I've tried H, htp, h, h!, t!, t, hp - pretty much all the combinations. None of these combinations have worked. The closest I've gotten is using H (which is shown in the screenshot above), but its not on the first page like I would prefer.
I had trouble earlier with a previous image where the image size was too big and got pushed down but this time around, the image size doesn't show any errors and seems to fit right in the column.
Any help is appreciated and thank you in advance.

[H]by design gives bad white space rather than float a figure to get a better page break. – David Carlisle Apr 13 '20 at 22:25\begin{figure}[ht] \centering \includegraphics[width=\linewidth]{image.png} \caption{Current caption} \label{fig:figure2} \end{figure}– Zarko Apr 13 '20 at 22:26figureenvironment is to allow the figure to float to avoid this problem. Why use[H]to disable that? – David Carlisle Apr 13 '20 at 22:52