如何调整我的乳胶简历上的标志 header

How to adjust a logo on my latex cv header

我正在使用 altacv 模板在乳胶中制作这份简历。我想将此徽标添加到文档的右上角,与我的名字在同一行,但我不知道该怎么做。 pdf 当前看起来像这样:

这是这部分的代码

\PassOptionsToPackage{dvipsnames}{xcolor}

%% Use the "normalphoto" option if you want a normal photo instead of cropped to a circle
% \documentclass[10pt,a4paper,normalphoto]{altacv}

\documentclass[10pt,a4paper,normalphoto]{altacv}

\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{float}
\usepackage[export]{adjustbox}
\usepackage{wrapfig}

% Change the page layout if you need to
\geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm,footskip=2\baselineskip}


% If using pdflatex:
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[default]{lato}


\begin{document}

\name{Osama Younus}
\begin{figure}[H]
    \centering
    \includegraphics[width=1.15in, height=.40in, right]{lums.png}
\end{figure}
\tagline{Software Developer}

\personalinfo{%
  \email{21100013@lums.edu.pk }
  \phone{--------------}
  \linkedin{https://www.linkedin.com/in/osamayounus20/}
  \github{https://git.io/JLNIB}

}

%% Make the header extend all the way to the right, if you want. 
\begin{fullwidth}
\makecvheader

\end{fullwidth}


\end{document}

这是徽标 link logo

\PassOptionsToPackage{dvipsnames}{xcolor}

%% Use the "normalphoto" option if you want a normal photo instead of cropped to a circle
% \documentclass[10pt,a4paper,normalphoto]{altacv}

\documentclass[10pt,a4paper,normalphoto]{altacv}

\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{float}
\usepackage[export]{adjustbox}
\usepackage{wrapfig}

% Change the page layout if you need to
\geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm,footskip=2\baselineskip}


% If using pdflatex:
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[default]{lato}

\begin{document}

\name{Osama Younus\hspace*{6.5cm}\lowercase{\includegraphics[width=1.15in]{example-image-duck}}}

\tagline{Software Developer}

\personalinfo{%
  \email{21100013@lums.edu.pk }
  \phone{--------------}
  \linkedin{https://www.linkedin.com/in/osamayounus20/}
  \github{https://git.io/JLNIB}

}

%% Make the header extend all the way to the right, if you want. 
\begin{fullwidth}
\makecvheader

\end{fullwidth}


\end{document}