将 PDF 的一部分作为图像插入

将 PDF 的一部分作为图像插入

我想在我的 latex 文档中插入一些来自某些来源的图像。我已截取屏幕截图并将每张图片保存为 PDF 格式。

但是,此 PDF 中的图像保存为 A4 大小,而我的图像大约只有 A4 页面的四分之一。我只想在 latex 中插入图像的一部分,而不是整个 A4 页面的 PDF。

我怎样才能做到这一点?

答案1

您可以使用pdfcrop大多数 TeX 发行版中应包含的实用程序轻松实现此目的。在命令行中,在 pdf(例如 my.pdf)所在的文件夹中运行以下命令来裁剪图像

pdfcrop my.pdf my.pdf

然后使用 pdfpages 将图像包含在 LaTeX 中,例如

\documentclass{article}
\usepackage{pdfpages}

\begin{document}
  \includepdf{my.pdf}
\end{document}

或者只是作为图像

\documentclass{article}
\usepackage{graphicx}

\begin{document}
\begin{figure}
  \includegraphics{my.pdf}
\end{figure}
\end{document}

您可能会在以下方面获得更多、更快的回复:http://tex.stackexchange.com

相关内容