选择不同的背景

选择不同的背景

您好,我正在尝试创建一个包含多页的文档。但是,我需要为第一页添加特定背景,为其余页面添加另一个背景。

我目前正在使用:

\usepackage{graphicx}
\usepackage{lipsum}

\usepackage[pages=1,2]{background}

\backgroundsetup
{scale=1.0, color=black, opacity=1.0, angle=0, 
contents={
\checkoddpage
         \ifoddpage
            \includegraphics[width=\paperwidth,height=\paperheight]{1.pdf}
         \else
            \includegraphics[width=\paperwidth,height=\paperheight]{2.pdf}
        \fi}
}

我想使用类似的东西来代替ifoddpages。

\if page = 1 
    \includegraphics{...} 
else 
    \includegraphics{...}

答案1

我还没有测试过这个解决方案,但是根据此主题,为了检测页码,您可以执行以下操作:

\ifnum\value{page}>1 \includegraphics{...}\else\includegraphics{...}\fi

相关内容