如何插入 pdf 作为背景?

如何插入 pdf 作为背景?

我想使用 pdf 页面作为标题页的背景。pdfpages 包可以很好地插入页面,但我无法在上面写内容。

答案1

您将需要以下包eso-piceso-pic 软件包

\usepackage{eso-pic}

在之前\begin{document},定义:

\newcommand\BackgroundPic{
    \put(0,0){
    \parbox[b][\paperheight]{\paperwidth}{%
    \vfill
    \centering
    \includegraphics[width=\paperwidth,height=\paperheight]{BackGroundPDF.pdf}
    \vfill
    }}}

\begin{document}

\AddToShipoutPicture*{\BackgroundPic}
 \maketitle

规定*背景图片只在该页面使用。

答案2

我最近遇到了这个问题,我找到了解决方案https://latex.org/forum/viewtopic.php?t=26829对我来说效果更好。因为当我搜索这个问题时,它就出现在顶部。在这里附上代码可能会有所帮助。

它使用包background

\documentclass[10pt]{letter}
\usepackage{background}
\backgroundsetup{scale = 1, angle = 0, opacity = 0.2,
   contents = {\includegraphics[width = \paperwidth,
   height = \paperheight, keepaspectratio]
   {Background.pdf}}}
\begin{document}
Main text.
\end{document}

相关内容