如何在 Overleaf 中并排的两幅图像之间留出空间?

如何在 Overleaf 中并排的两幅图像之间留出空间?

我想将 2 张图片并排放置,并将最后一张图片放在底部。我通过以下代码成功实现了此目的:

\begin{figure}
\centering
  \subfloat[Subcaption 1]{\label{figur:1}\includegraphics[width=.5\textwidth]{complex/chapter5/pos1.jpg}}
  
  \subfloat[Subcaption 2]{\label{figur:2}\includegraphics[width=.5\textwidth]{complex/chapter5/pos2.jpg}}
  \\
  \subfloat[Subcaption 3]{\label{figur:3}\includegraphics[width=1.1\textwidth]{complex/chapter5/scanning.PNG}}
  \label{figur}\caption{equation...}
\end{figure}

但是,有一个问题。我无法在它们之间留出空间。上部图像和底部图像的宽度应该等于文本宽度。我该如何实现呢?

同时,我的标题也是双括号(())而不是单括号()。你可以在图中看到。

在此处输入图片描述

答案1

对我有用的是减少图形的宽度并手动添加一些\hspace

我无法重现您的双括号标题;运行以下代码时它们对我来说是正常的:

\begin{figure}
\centering
  \subfloat[Subcaption 1]{\label{figur:1}\includegraphics[width=.4\textwidth]{a.jpg}}
  \hspace{.1\textwidth}
  \subfloat[Subcaption 2]{\label{figur:2}\includegraphics[width=.4\textwidth]{b.jpg}}
  \\
  \subfloat[Subcaption 3]{\label{figur:3}\includegraphics[width=\textwidth]{c.PNG}}
  \label{figur}\caption{equation...}
\end{figure}

相关内容