将乳胶添加到现有的 pdf 文档中?

将乳胶添加到现有的 pdf 文档中?

我想导入一个 pdf 文档并在图像(pdf)上添加其他代码。我可以通过 overpic 包覆盖图形。问题是我希望编译后的 latex 文件具有与导入的图形(pdf)完全相同的文档大小(几何)。这可能吗?

答案1

您可以使用pagecommand选项将includepdftikz 覆盖到文档上。

\documentclass{article}
\usepackage{pdfpages}
\usepackage{tikz}
\begin{document}
    \includepdf[pagecommand={\begin{tikzpicture}[remember picture,overlay]
        \fill[red, opacity=0.3] (current page.south west) rectangle (current page.north east) ;
        \end{tikzpicture}\thispagestyle{empty}}]{test.pdf}
\end{document}

相关内容