首先,如果这是一个非常愚蠢和明显的观点,我提前道歉。
我正在尝试在每一页的右侧添加一个徽标。我不确定为什么这张图片一直显示在中间?原始文档非常混乱,所以这里是重要的乳胶代码。
十分感谢你的帮助。
\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
right
从......中去除\includegraphics
- 代替
south east
south
vshift
随意调整hshift
(hshift
使用负值)。
\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}
}
}