我用类似的东西
\usepackage[pages=some]{background}
\backgroundsetup{%
firstpage=true,
contents={First Page},
placement=center
}
设置标题页上的内容。
我现在想在每个后续页面上添加(不同的)背景。
有任何想法吗?
答案1
试试这个代码:
\documentclass[10pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{graphicx,lipsum,emptypage}
\usepackage[placement=center]{background}
\author{Author of Myself}
\begin{document}
\frontmatter
\backgroundsetup{contents=Confidential,color=yellow}
\thispagestyle{empty}
\begin{center}
\Huge Back\par
\vspace{2cm}
\Large Author of Myself
\normalsize
\vfill
\includegraphics[width=3cm]{RSEdizioni.png}
\end{center}
\newpage
\backgroundsetup{contents=}
\mainmatter
\backgroundsetup{contents=To review,color=blue!30}
\lipsum[1-25]
\end{document}
输出:
答案2
我找到了解决方法。
我使用 background 包来制作标题页,并使用 draftwatermark 包来制作其余部分。
感谢您查看这个。