两张带背景包的图片

两张带背景包的图片

早上好。我正在使用后台包。我认为我遵循了包说明,但我有两个问题:

  1. 第二张图片没有出现。我错在哪里?
  2. 可以将页码图像移到文本上方吗?谢谢。

这里是代码:

\documentclass[a4paper,10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{graphicx}
\usepackage{background}
\usepackage{multicol}
\usepackage{lipsum}

\usepackage[margin=10mm]{geometry}
\pagestyle{empty}

\setlength\columnsep{10mm}

\renewcommand{\rmdefault}{phv}

\setlength{\parindent}{0pt}

\begin{document}

\begin{figure}[t!]
\includegraphics[width=\linewidth,height=20mm]{image.pdf}
\end{figure}

\backgroundsetup{opacity=1,hshift=60,vshift=-5,angle=0,contents={\includegraphics[width=50mm]{image.pdf}}}

%page-number from istructions
\backgroundsetup{placement=top,angle=0,color=black!40,scale=4,hshift=60,vshift=-5,contents={-\thepage-}}

\begin{multicols}{2}
\includegraphics[width=\linewidth,height=10mm]{image.pdf}
\lipsum[1-2]
\includegraphics[width=\linewidth,height=10mm]{image.pdf}
\lipsum[1-2]
\includegraphics[width=\linewidth,height=10mm]{image.pdf}
\lipsum[1-2]
\includegraphics[width=\linewidth,height=10mm]{image.pdf}
\lipsum[1-2]

\end{multicols}

\end{document}

相关内容