我想将图像放在封面页上,但要略高于合并页(这样它几乎可以从 A4 页面的最顶部开始)。我该怎么做?
答案1
有多种方法可以实现这一点。我最喜欢的是tikz
使用 itsremember picture
和 的overlay
组合。
\documentclass{article}
\usepackage{tikz}
\usepackage[a4paper,margin=1in,showframe]{geometry} %% showframe is to show margins. Remove that in your file
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north] at (current page.north) {\includegraphics[width=3cm]{example-image-a}};
\end{tikzpicture}
\end{document}