我在用IEEE TVCG LaTeX 模板并希望使用以下代码插入多个彼此相邻的图像:
\begin{figure}[h]
\centering
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{universe} % first figure itself
\caption{Universe}
\end{minipage}\hfill
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{figure} % second figure itself
\caption{Bar Plot}
\end{minipage}
\end{figure}
但是,由于模板的原因,页面被分成了两个部分,因此图片没有水平对齐。如何使用以下代码将代码对齐?
谢谢!
尝试过“figure*”环境:
\begin{figure*}[h]
\centering
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{LeNet_300_Accuracy} % first figure itself
\caption{LeNet 300-100-10 Training \& Testing Accuracy}
\end{minipage}\hfill
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{LeNet_300_Loss} % second figure itself
\caption{LeNet 300-100-10 Training \& Testing Loss}
\end{minipage}
\end{figure*}
但这也没有帮助。
答案1
您可以使用figure*
环境来将图形跨越两列。