LaTeX 中有 LinkedIn 的图标吗?

LaTeX 中有 LinkedIn 的图标吗?

我正在尝试用 LaTeX 创建简历,并想为我的个人资料添加 LinkedIn 符号。我正在使用 FontAwesome 模板,但它不适用于 LinkedIn。我是 LaTeX 新手,所以任何帮助都非常感谢。

 \documentclass[9pt]{developercv}
    \begin{document}
    \begin{minipage}[t]{0.35\textwidth}
    \vspace{-\baselineskip}
        \icon{Globe}{12}{\href{https://glitch.com/}{name}}\\
        \icon{Github}{12}{\href{https://github.com/}{name}}\\
        \icon{LinkedIn}{12}{\href{https://www.linkedin.com}{name lastname}}\\
   \end{minipage}
    \end{document}

答案1

LinkedIn 图标的名称是

Linkedin

询问开发人员fontawesome为什么。

\documentclass[9pt]{developercv}

\begin{document}

\noindent
\icon{Globe}{12}{\href{https://example.com/@name}{name}}\\
\icon{Github}{12}{\href{https://example.com/name}{name}}\\
\icon{Linkedin}{12}{\href{https://example.com/in/name-123456/}{Name Surname}}

\end{document}

答案2

是的。首先你必须使用 fontawesome5 包:

\usepackage{fontawesome5}

然后在任意位置使用 LinkedIn 图标,如下所示:

\faIcon{linkedin}

或者

\faIcon{linkedin-in}

相关内容