如何在 moderncv 模板中添加 github 链接

如何在 moderncv 模板中添加 github 链接

我正在尝试在moderncv经典模板中添加 github 链接和图标。

我想将其添加到 处additional information就像这张图片中

我在用着 :

\usepackage{fontawesome}
\faGithub\href{https://github.com/}{name} 

但它并没有添加到指定的位置,而是去了另一个地方。

关联

链接到代码还有.cls其他几个.sty文件。如果需要的话我会添加。

答案1

那么你必须改成additional information你希望的内容:

\extrainfo{\faGithub\href{https://github.com/}{ name}}% <===============

请参阅当前版本moderncv(版本 2.0.0),您可以使用命令

\social[github]{jdoe}

添加您的 github 信息。

请参阅以下 MWE

\documentclass[11pt,a4paper,sans]{moderncv}

% moderncv themes
\moderncvstyle{classic} % casual, classic, banking, oldstyle and fancy
\moderncvcolor{blue} 

\usepackage[utf8]{inputenc}

\usepackage[scale=0.75]{geometry}
\usepackage{booktabs}
\usepackage{fontawesome}% <=============================================

% personal data
\name{John}{Doe}
\title{Resumé title}
\address{street and number}{postcode city}{country}
\phone[mobile]{+1~(234)~567~890}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}
\homepage{www.johndoe.com}
\social[linkedin]{john.doe}
\social[twitter]{jdoe}
\social[github]{jdoe} % <===============================================
\extrainfo{\faGithub\href{https://github.com/}{ name}}% <===============
\photo[64pt][0.4pt]{example-image-a}
\quote{Some quote}

\setlength{\footskip}{66pt}


\begin{document}

\makecvtitle

\section{Education}
\cventry{year--year}{Degree}{Institution--3}{City--4}{\textit{Grade}--5}{Description--6}  % arguments 3 to 6 can be left empty
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\section{Master thesis}
\cvitem{title}{\emph{Title}}
\cvitem{supervisors}{Supervisors}
\cvitem{description}{Short thesis abstract}

\end{document}

结果如下:

在此处输入图片描述

相关内容