将 jpg 图像插入到 pdfpages 包含的 pdf 页面中

将 jpg 图像插入到 pdfpages 包含的 pdf 页面中

对于一个大学项目,我必须在摘要之后立即将大学提供的表格附加到我的项目中,并使用乳胶填写详细信息。我设法使用\includepdf以下代码显示的内容来完成此操作。

\documentclass{book}
\usepackage{pdfpages}
\begin{document}
\chapter*{Abstract}

This is the text of the abstract

\includepdf[pages={1}, pagecommand={},
 picturecommand*={%
  \put(340,648){My Name}%
  \put(206,585){My Surname}%
  \put(270,558){The University name}%
  \put(182,531){The name of the course}%
  \put(80,101){The date}%
}]{theformname.pdf}
\end{document}

但是,我还需要此页上的签名副本。因此,我扫描了我的签名并将其保存为 jpg 图像。有没有办法将其包含在此页面中并将其放置在正确的位置,就像我对我的名字、姓氏等所做的那样?非常感谢

答案1

您可以像添加文本一样添加图像:

\documentclass{book}
\usepackage{pdfpages}
\begin{document}
\chapter*{Abstract}

This is the text of the abstract

\includepdf[pages={1}, pagecommand={},
 picturecommand*={%
  \put(340,648){My Name}%
  \put(206,585){My Surname}%
  \put(270,558){The University name}%
  \put(182,531){The name of the course}%
  \put(80,101){The date}%
  \put(200,400){\includegraphics{example-image-duck}}
}]{example-image-a4}
\end{document}

在此处输入图片描述

相关内容