我目前正在尝试在模板中的图形周围放置一个框架Elsevier
。我的图形包含 4 幅图像,排列在 2 x 2 的网格中。当我尝试使用命令时\fbox
,所有图像都聚集在一起,格式被破坏。
有没有办法以最小的麻烦解决这个问题?下面是我的部分代码:
\begin{figure}[h]
\centering
\fbox{
\includegraphics[scale=0.25]{ews1}
\includegraphics[scale=0.25]{ews3}
\includegraphics[scale=0.25]{ews2}
\includegraphics[scale=0.25]{ews4}
}
\label{f1}
\caption{}
\end{figure}
感谢您的帮助。
答案1
\parbox{...}
尝试在里面使用\fbox{...}
,并在两个\includegraphics
语句后留一个空行。
\documentclass{elsarticle}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
\centering
\fbox{ %
\parbox{0.7\textwidth}{%
\centering
\includegraphics[scale=0.25]{ente}
\includegraphics[scale=0.25]{ente}
\includegraphics[scale=0.25]{ente}
\includegraphics[scale=0.25]{ente}
}
}
\caption{}
\label{f1}
\end{figure}
\end{document}