请原谅我的英语,有人能帮我在中间,名字和电子邮件之间添加一张图片吗?这是我一直在使用的代码。
\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*}
答案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}