tikzpicture 将我的两列小页面推到下一页

tikzpicture 将我的两列小页面推到下一页

我是 LaTex 新手,正在尝试完成我的简历。我有一个由两个小页面组成的双栏设计(Overleaf deedy-resume)。现在我想将我的照片插入右上角,但当我这样做时,它会将其余所有照片推到下一页。

左图:插入图片之前,右图:插入图片之后

这是我的代码(带图片):

\documentclass[a4paper,10pt]{deedy-resume}
\usepackage{tikz}
\usepackage{tikzpagenodes}
\usepackage{hyperref}
\usepackage{enumitem}
\usepackage{slantsc}
\usepackage{color}
\usepackage[document]{ragged2e}
\usepackage[pscoord]{eso-pic}

\begin{document}

\begin{flushleft}
\Huge \textbf{ADRIEN SIMON}\\*
\begin{small} 
%\color{darkgray} \color{gray}
some text\\
\end{small}
\end{flushleft}

%This is the picture I wish to place in the top right corner
\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north east, inner sep=0pt, outer sep=0pt]  at (current page text area.north east)
{\includegraphics[height=2.5cm]{_I9A6002-2.jpg}};
\end{tikzpicture}

%----------------------------------------------------------------------------------------
%   LEFT COLUMN
%----------------------------------------------------------------------------------------

\begin{minipage}[t]{0.27\textwidth}
\sectionspace
\section{Computer skills}
some text\\
\sectionspace
\section{Languages}
some text\\
\sectionspace
\section{Certificates}
some text\\
\sectionspace
\section{Relevant}
\vspace{-1.5mm}
\section{Coursework}
some courses\\
\end{minipage} 
\hfill

%----------------------------------------------------------------------------------------
%   RIGHT COLUMN
%----------------------------------------------------------------------------------------

\begin{minipage}[t]{0.67\textwidth} 
\sectionspace 
\section{Education}
\some text\\
\sectionspace
\section{Academic Projects}
\some text\\
\sectionspace
\section{Work Experience}
some text\\
\sectionspace 
\section{Extracurricular Experience} 
some text\\
\sectionspace 
\end{minipage}

\end{document}

感谢您的帮助!

相关内容