I'm writing a double column paper and I want to insert a wide figure. I've been trying to use figure* but it didn't work because I used IEEE conference template. The figure overlapped with the text if do figure*. Then I tried strip and it workd. However, the caption of this figure is too far below and can't be centered. Is there a way that I can move this caption a little bit up and make it look like normal figures?
Here's my code for this:
%% Main part of the paper
\begin{document}
\title{This is a Test for figure Importing}
\maketitle
\thispagestyle{plain}
\pagestyle{plain}
\section{Introduction}
\lipsum[1-5]
\subsection{sub1}
\lipsum[2-4]
%1st figure
\begin{strip}
\begin{figure}[H]
\centering
\captionsetup{justification=centering}
\includegraphics[width=0.9\textwidth]{"Fig 5".eps}\\
\caption{Comparison Results of Picked Methods}
\label{fig:MethodResults}
\end{figure}
\end{strip}
\subsection{sub2}
\lipsum[2-4]
\end{document}

MWEas in compilable format? i.e., from\documentclass{...}\usepackage{...}\begin{document}...\end{document}– MadyYuvi Sep 25 '19 at 06:35\rule{width}{heigh}or use one of the images from themwepackage (see CTAN). And where doesstripcome from? – daleif Sep 25 '19 at 09:50