将徽标放在页面顶部靠近边缘的位置

将徽标放在页面顶部靠近边缘的位置

首先,这个问题可能已经被问过了,但我找不到。我想将图片放在页面顶部,使页面顶部边缘和图片顶部边缘之间没有空白。我已经将图片宽度调整到纸张宽度,如下所示:

\makebox[\textwidth]{\includegraphics[width=\paperwidth]{mypicture}}

谢谢大家并且对我的拼写感到抱歉。

答案1

我建议您使用该eso-pic包:

\documentclass{scrartcl}
\usepackage{eso-pic}
\begin{document}

\AddToShipoutPicture*{\put(0,788){\rule{21cm}{2cm}}} 

Hello

\end{document}

您可能需要调整设置,但基本上这是一种方法。要让图片出现在每一页上,只需删除“*”即可。

结果

答案2

有了这个picture包你甚至不需要猜测:

\documentclass{scrartcl}
\usepackage{graphicx}
\usepackage{picture}
\usepackage{eso-pic}
\begin{document}

\AddToShipoutPicture*{\put(0,\dimexpr\paperheight-1cm){%
  \makebox[\paperwidth]{\includegraphics[width=\paperwidth,height=1cm]{tulpen}}%
}}

Hello
\newpage
Hello

\end{document}

如果您使用\AddToShipoutPicture(不带*),图像将被添加到每个页面。

相关内容