在现代简历中插入 YouTube 链接

在现代简历中插入 YouTube 链接

回复:现代 CV 联系信息 - YouTube 频道链接

你好,

我多次尝试在右上角我的联系信息所在的位置添加一个指向我频道的 YouTube 链接,但无济于事。我使用“\social”创建了一个 LinkedIn 超链接,但似乎无法为 YouTube 创建相同的超链接。有什么建议吗?我附加了该部分的快照,但删除了“\social[youtube]”部分,因为我一直收到错误。(我对 LaTeX 还很陌生,不确定如何上传整个文件)。

非常感谢!克里斯

\documentclass[11pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}                            
\usepackage[scale=0.8]{geometry}
\AtBeginDocument{\recomputelengths} 
\firstname{John}
\familyname{Doe}
\mobile{}                   
\phone{}          
\email{[email protected]} 
\social[linkedin]{}  

\usepackage[pdftex,
                   pdfauthor={},
                   pdftitle={CV for },
                   pdfsubject={Detailed CV for focusing on his previous training, employment and PhD research.},
                   pdfkeywords={These, are, keywords},
                   pdfproducer={ShareLaTeX},
                   pdfcreator={pdflatex},
                   pdfpagemode={UseOutlines},
                   bookmarksopen,
                   pdfstartview={FitH},
                   colorlinks,
                   linkcolor={blue},
                   citecolor={red},
                   urlcolor={blue}]{hyperref}

\begin{document}
\maketitle

% EDUCATION
\section{Education}
\cventry{2012--Present}{Some education}{University}{Prescott}{Arizona}{}  % arguments 3 to 6 can be left empty
\cventry{2008--2012}{MA (Hons)}{University}{Huntsville}{Texas}{}

\end{document}

答案1

根据本博客介绍了 moderncv 包有一个名为的字段\homepage{}将链接到一个互联网页面。

这会在社交链接上方提供指向互联网页面的链接。在 MWE 中,可以在字段后\social[]{}添加

...
\social[linkedin]{}  
\homepage{www.youtube.com}
\usepackage{pdflatex,
...

相关内容