[Tex/LaTex] How to i insert large figure in IEEE template

ieeetran

Please, i have to insert a figure (width 1177, height 437) in IEEE template two columns.
Here is my code:

\begin{figure}[H]
\centering
\includegraphics[scale=0.4]{./Panel}
\caption{MY Panel}
\label{fig:Panel}
\end{figure}

The problem is that the figure is very large, i can't insert it clearly. Have you an idea please about a solution ?

Best Answer

This works, try changing the width to get image properly aligned within the column.

\begin{figure}[h]
\centering
\includegraphics[width=0.4\textwidth]{./Panel}
\caption{MY Panel}
\label{fig:Panel}
\end{figure}

or

\begin{figure}[htb]
\includegraphics[width=\linewidth]{./Panel}
\caption{MY Panel}
\label{fig:Panel}
\end{figure}