我正在尝试添加一张图片作为“标题页”的背景
我使用了以下代码
\usepackage{background} % I insert it in the main.tex file
\backgroundsetup{ % I insert it in the "title_page.tex" file
scale=1,
angle=0,
opacity=.4, %% adjust
contents={\includegraphics[width=\paperwidth,height=\paperheight]{rubik.jpg}}
}
我最终得到了一个非常适合标题页的背景。然而,其余页面现在包含大斜体字“草稿”作为背景。
我的问题是:如何将此代码限制为仅“标题页”?
或者,是否有其他方法可以得到相同的结果?
答案1
我将简要阐述一下评论:该background
包的默认设置是添加草稿默认以一定角度和指定尺寸显示所有页面。这在软件包文档中确实有解释。
为了避免这种行为,您只需将添加的文本内容重新定义为空。
下面是一个示例来说明如何实现此目的:
\documentclass{scrartcl}
\usepackage{background}
\usepackage{lipsum}
\begin{document}
\begin{titlepage}
\backgroundsetup{
scale=3,
angle=0,
opacity=1,
contents={I am a title page}
}
Test
\end{titlepage}
\newpage
\backgroundsetup{contents={}}
\lipsum[1-5]
\end{document}
编辑:或者您可以使用firstpage
软件包自带的选项。其默认值为false
,因此只需将其设置为true
即可实现基本相同的效果:
\documentclass{scrartcl}
\usepackage[firstpage=true]{background}
\usepackage{lipsum}
\begin{document}
\begin{titlepage}
\backgroundsetup{
scale=3,
angle=0,
opacity=1,
contents={I am a title page}
}
Test
\end{titlepage}
\newpage
\lipsum[1-5]
\end{document}