moderncv 中的 Skype 按钮

moderncv 中的 Skype 按钮

我正在使用类编写简历moderncv。我想插入一种链接,如果单击该链接,它会在您的 PC 上打开 Skype 并呼叫我或将我添加到您的联系人中。我尝试过这些:

  1. 致电:\href{skype:my_username?call}{name_surname}
  2. 加上: \href{skype:my_username?add}{name.surname}

在编译后的 *.pdf 中出现一个可点击的链接“name_surname”,但如果我点击它,什么也不会发生。

編輯:MWE

\documentclass[11pt,a4paper,sans,colorlinks,linkcolor=true]{moderncv}        

\AfterPreamble{\hypersetup{
  pdfauthor={},
  pdftitle={},
  pdfsubject={},
  urlcolor=magenta,
}}

\usepackage{fontawesome}
\providecommand\faSkype{{\FA\symbol{"F17E}}}

\usepackage{xcolor}

\moderncvstyle{banking}                            
\moderncvcolor{black}                                
\usepackage[utf8]{inputenc}                       
\usepackage[scale=0.9]{geometry}


\name{name}{surname}
\address{address}{city}{}%
\phone[mobile]{mynumber}                   
\email{myemail}                               
\extrainfo{\faSkype\ \href{skype:username?call}{name.surname}}

\begin{document}

\makecvtitle
\vspace{-2\baselineskip}

\section{personal data}
\cvitem{...}

\section{education}
\cventry{}{...}{...}{...}{}{}  


\section{work}
\cventry{}{...}{...}{...}{}{}

\section{language}
\cvitem{language}{level}

\section{informatic}
\cvitem{languages}{Assembly}

\section{Hobby}
hello

\enlargethispage{1.3cm}
\vfill

\footnotesize
bye


\end{document}

相关内容