答案1
尝试\vspace*{}
使用负数作为参数。另请参阅这个问题。
答案2
您可以制作 tikzpicture 并将图形放在文档的“顶部”,如下所示:
\documentclass{report}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.north)[anchor=north,inner sep=50pt,xshift = 4cm,
yshift = 0cm]{
\includegraphics[height=1cm]{resumephoto}
};
\end{tikzpicture}
\end{document}
只需摆弄 xshift 和 yshift 即可将其置于正确的位置。