【发布时间】:2022-07-12 23:41:27
【问题描述】:
我正在使用 Overleaf 并使用 IEEEtran 模板来撰写我的论文。我想将一个图形显示为整个页面宽度并位于页面的中心。但是两列模板不允许我这样做。我的图的代码如下。我根据模板的一侧限制了图像的大小,所以请忽略它。
\begin{figure}[ht]
\begin{tabular}{c c c}
\multicolumn{3}{c}{\textit{\textbf{Case 1}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0008_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0008_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Case 2}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0009_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0009_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Case 3}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0012_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0012_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Case 4}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0013_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0013_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Case 5}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0018_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0018_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Case 6}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0019_Footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{exp_0019_polygons_900x900.png}\\
\multicolumn{3}{c}{\textit{\textbf{Final Ensemble Output Case}}}\\
\includegraphics[height = 1.2in ,width = 1.2in]{Result_SAR.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{ensembled_footprint.png} &
\includegraphics[height = 1.2in ,width = 1.2in]{ensembled_polygons_900x900.png}\\
\end{tabular}
\caption{Experiments Results and Polygons}
\label{Experiments Results and Polygons}
\end{figure}
【问题讨论】:
-
请制作一个可编译的minimal reproducible example,包括一个文档类和必要的包
标签: latex