如何在 IEEE 模板中插入大图

如何在 IEEE 模板中插入大图

请帮我在 IEEE 模板中插入一个两列的图形(宽度 1177,高度 437)。这是我的代码:

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

问题是这个数字太大了,我无法清楚地插入。您有什么解决办法吗?

答案1

这是可行的,尝试改变宽度以使图像在列内正确对齐。

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

或者

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

答案2

对我来说,只要缩小规模就可以了。

\begin{figure}[htbp]
\centering{\includegraphics[scale=0.2]{CDD.PNG}}
    \caption{Types of Infrastructure.}
    \label{CDD}
\end{figure}

是否适合我的 CDD.PNG 大小为 75.4KB 和 2025x1153 像素的一列

相关内容