我正在使用来自的 moderncv 模板这里。我尝试使用添加 LinkedIn 链接
\social[linkedin]{john.doe}
它没有产生所需的输出。原因是和文件\social[linkedin]
中缺少的定义。有人能帮我在这个模板中添加这些 LinkedIn 和 Xing 链接吗?.cls
.sty
答案1
以下是使用fontawesome5
和hyperref
包将它们输入到文档中的示例。或者您也可以使用fancyhdr
包将它们添加到页脚的中心。
\documentclass{article}
\usepackage{geometry}
\usepackage{fontawesome5}
\usepackage[hidelinks]{hyperref}
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
\fancypagestyle{plain}{
\fancyhead{}
\fancyfoot[c]{\parbox{10cm}{\centering
$\bullet$\quad\faLinkedinIn\space\href{https://www.linkedin.com/in/john.doe}{john.doe}
\qquad$\bullet$\quad\faXing\space\href{www.xing.com/profile/john.doe}{john.doe}
\qquad$\bullet$\quad\faXing\space\href{www.xing.com/profile/john.doe}{john.doe}\\[10pt]
\qquad$\bullet$\quad\faTwitter\space\href{www.twitter.com/jdoe}{jdoe}
\qquad$\bullet$\quad\faGithub\space\href{www.github.com/jdoe}{jdoe}
}}
\fancyfoot[r]{\parbox{1cm}{\thepage}}
}
\pagestyle{plain}
\begin{document}
\faLinkedinIn\space\href{https://www.linkedin.com/in/john.doe}{john.doe}
\faXing\space\href{www.xing.com/profile/john.doe}{john.doe}
\faTwitter\space\href{www.twitter.com/jdoe}{jdoe}
\faGithub\space\href{www.github.com/jdoe}{jdoe}
\end{document}