包括表格,包括 pdf,标题问题

包括表格,包括 pdf,标题问题

我有三个 pdf 文档(每个文档都包含一个表格),我想包含这些 pdf 并添加一个最终标题(所有 pdf 都有一个标题),已经完成了,但最后一张表格之间有一个巨大的空白,见图数字(包含此表的 pdf)和标题(标题我试过了,但\vspace*{-0.5cm}它不起作用,请帮忙。这是我的 pdfpdf文件如何修复这个问题

 \documentclass{article}
 \usepackage{graphicx}
  \begin{document}
  \newpage
  \begin{table}
 \includegraphics [width=.99\linewidth, height=.99\textheight]{111.pdf}

\end{table}
\newpage
\begin{table}
\includegraphics [width=.99\linewidth, height=.99\textheight]{222.pdf}
\end{table}
\newpage
\begin{table}
\includegraphics [width=.99\linewidth, height=.99\textheight]{333.pdf}
\centering
\vspace*{-0.5cm}
\caption{recap}
\end{table}
\end{document}

答案1

在包含原始 PDF 之前,您必须对其进行适当裁剪。具体来说,第三个表格后面有大片空白。LaTeX 的解决方案是在包含 PDF 时使用crop和选项。trim

有时,裁剪并不容易,所以我们会临时\fbox{..}在图形周围添加一些内容,以直观地了解裁剪的范围。 的语法trimtrim = left bottom right top。正确裁剪图形后,只需删除 即可\fbox{..}

\documentclass{article}
\usepackage{graphicx}
\begin{document} 

\newpage
\begin{table}
\includegraphics [width=.99\linewidth, height=.99\textheight]{111.pdf}

\end{table}
\newpage
\begin{table}
\includegraphics [width=.99\linewidth, height=.99\textheight]{222.pdf}
\end{table}
\newpage
\begin{table}
\fbox{\includegraphics[clip, trim=1.0cm 20cm 0.0cm 2cm, width=.99\linewidth]{333.pdf}}
\centering
\caption{recap}
\end{table}

\end{document}

在此处输入图片描述

相关内容