如何减少表格中图形之间的水平空间

如何减少表格中图形之间的水平空间

我正在使用这个代码

\begin{figure}[ht]

  \begin{tabular}{ll}

    % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
    \includegraphics[trim = {3.32cm 10.61cm 3.32cm 10.61cm},clip,width=1.75in]{newresults/th1dis} &\includegraphics[trim = {3.32cm 10.61cm 3.32cm 10.61cm},clip,width=1.75in]{newresults/T1dis}\\
    \includegraphics[trim = {3.32cm 10.61cm 3.32cm 10.61cm},clip,width=1.75in]{newresults/th2dis} &\includegraphics[trim = {3.32cm 10.61cm 3.32cm 10.61cm},clip,width=1.75in]{newresults/T2dis}\\
  \end{tabular}
  \medskip
  \caption{my caption.}
\label{fig:figure1}
\end{figure}

现在我想减少并排图形之间的水平空间,可以吗?

答案1

图像没有什么特别之处,这里的\includegraphics位置就像一个字母,例如xtabular的特定化在每列周围ll都有间距,因此您可以使用来删除中间空间或在图中局部使用或您想要的任何长度。\tabcolsepl@{}l\setlength\tabcolsep{1pt}

相关内容