我想将两个数字放入一个跨两列的多列文档中。我想将这两个数字在垂直方向上移得更近一些,以便它们稍微重叠。这两个数字像拼图一样拼合在一起,因此修剪它们不是一个选择。我怎样才能使这两个数字重叠?
这是我的尝试:
\begin{figure*}
\centering
\begin{tabular}{c}
\includegraphics[scale=0.8]{figure1.pdf} \\ \vspace*{-1cm}
\includegraphics[scale=0.8]{figure2.pdf} \\
\end{tabular}
\caption{caption goes here}
\end{figure*}
该\vspace*
命令不会在tabular
环境中执行任何操作,但希望它能传达这个想法——垂直移动图形以使其重叠。任何帮助都将不胜感激。
答案1
表格在那里没有任何用处,只是
\begin{figure*}
\centering
\includegraphics[scale=0.8]{figure1.pdf}
\vspace*{-1cm}
\includegraphics[scale=0.8]{figure2.pdf}
\caption{caption goes here}
\end{figure*}