尝试将此徽标移至页面右侧

尝试将此徽标移至页面右侧

首先,如果这是一个非常愚蠢和明显的观点,我提前道歉。

我正在尝试在每一页的右侧添加一个徽标。我不确定为什么这张图片一直显示在中间?原始文档非常混乱,所以这里是重要的乳胶代码。

十分感谢你的帮助。

    \documentclass{exam}

\usepackage[a4paper, total={6in, 11in}]{geometry}
\usepackage{background}


\backgroundsetup{
  scale=1,
  color=black,
  opacity=1,
  angle=0,
  position=current page.south,
  vshift=60pt,
  hshift=30pt,
  contents={%
  \tiny%\sffamily%
\includegraphics[width=\linewidth,height=50pt,keepaspectratio, right]{Images/1.png}
  }
}

\begin{document}
What
\end{document}

答案1

  1. right从......中去除\includegraphics
  2. 代替south eastsouth
  3. vshift随意调整hshifthshift使用负值)。
\documentclass{exam}

\usepackage[a4paper, total={6in, 11in}]{geometry}
\usepackage{background}


\backgroundsetup{
  scale=1,
  color=black,
  opacity=1,
  angle=0,
  position=current page.south east,
  vshift=60pt,
  hshift=-30pt,
  contents={%
\includegraphics[width=\linewidth,height=50pt,keepaspectratio]{Images/1.png}
  }
}

相关内容