I know that this question has been asked before. But I am having real trouble implementing the before-mentioned approaches into my document which is of IEEEtran class.
My code snippet is the following one:
\subsection{Testing the Image}
\begin{figure*}[h!]
\centerline{\fbox{\includegraphics[width=1\textwidth]{images/Experiment.png}}}
\caption{Experiment}
\end{figure*}
% TEXT HERE ...
% TEXT HERE ...
% TEXT HERE ...
% TEXT HERE ...
But the resulting pdf has the image inserted in a new page and not above the %TEXT HERE segments as in the example.
How could I resolve this issue?
MWE
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{tabularx}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{tabularx}
\usepackage{float}
\usepackage{lipsum}
\begin{document}
\author
{
\IEEEauthorblockN{ Broxigar }
}
\title{Trying to spot this Error}
\maketitle
\lipsum
\begin{figure*}[h!]
\centering
\centerline{\fbox{\includegraphics[width=1\textwidth]{eeee.png}}}
\caption{caption}
\label{fig}
\end{figure*}
\textbf{here???}
\textbf{anybody????}
\end{document}


\documentclass{...}and ending with\end{document}– albert Mar 08 '20 at 13:23\lipsumafter the image it works just fine. But when I try to add custom text, it doesn't – ex1led Mar 08 '20 at 16:45figure*does not supportb: https://tex.stackexchange.com/questions/218199/put-figure-at-the-bottom-of-the-first-page#comment511638_218199 and I suppose it does not supporthalso. (I find full-widthhfigures weird, because I never know where to continue reading...). You can see also https://tex.stackexchange.com/questions/107270/how-to-put-a-full-width-table-at-the-top-or-bottom-of-the-same-two-column-page-a – Rmano Mar 08 '20 at 17:47figure*and you have removed the option t so most likely you force the image to the end of the document – David Carlisle Mar 08 '20 at 17:57