壁纸包存在问题

壁纸包存在问题

我想在每一页都显示一个文件作为背景,除了第一页,应该有另一个背景。我正在尝试使用下面的代码来实现这一点。问题是,在第一页上,pdf 文件一个接一个,你可以看到两者。

有没有解决方案,第一页只显示第一个文件作为背景?

\documentclass[paper=a4,oneside]{scrartcl}
\usepackage{lipsum}

\usepackage{wallpaper}
\usepackage[utf8]{inputenc}
\usepackage{helvet}

% Background for the first and the following sides
\newcommand{\setBackground}[2]{
    \IfFileExists{#1}{\ThisTileWallPaper{\paperwidth}{\paperheight}{#1}}

    \IfFileExists{#2}{\TileWallPaper{\paperwidth}{\paperheight}{#2}}
}

\begin {document}
\setBackground{file1.pdf}{file2.pdf}
\lipsum
\pagebreak
\lipsum
\end{document}

相关内容