无法在简历顶部中央的书面文字之间添加图片

无法在简历顶部中央的书面文字之间添加图片

请原谅我的英语,有人能帮我在中间,名字和电子邮件之间添加一张图片吗?这是我一直在使用的代码。

\begin{document}

%----------HEADING-----------------

\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}

  \textbf{{\LARGE Sarvesh Patil}} & Email: \href{mailto:}{[email protected]}\\ 
  
\href{https://www.linkedin.com/in/patil-sarvesh/}{LinkedIn: linkedin.com/in/patil-sarvesh} & Mobile:~~~+9192227922xx \\
  
\href{https://github.com/Patil-Sarvesh}{Github: ~~github.com/Patil-Sarvesh} \\
\end{tabular*}

图片来自 Overleaf,我想用它来创建我的简历。并在姓名和电子邮件之间的中心添加一张图片。

答案1

像这样:

在此处输入图片描述

\usepackage[margin=25mm]{geometry}
\usepackage{tabularray}
\usepackage[export]{adjustbox}
\usepackage{hyperref}


\begin{document}
\noindent\begin{tblr}{colspec ={X[l] c X[l]}}
\LARGE \textbf{Sarvesh Patil}
    & \SetCell[r=2]{h}  \includegraphics[width=21mm, valign=t]{example-image-duck}
        &    \SetCell[r=2]{h}   {Email: \href{mailto:}{[email protected]}\\
                                 Mobile:  +9192227922xx}        \\ 
{\href{https://www.linkedin.com/in/patil-sarvesh/}{LinkedIn: linkedin.com/in/patil-sarvesh} \\
 \href{https://github.com/Patil-Sarvesh}{Github: github.com/Patil-Sarvesh}}
    &   &                               \\
\end{tblr}

\end{document}

相关内容