如何将 LinkedIn 徽标插入到我的文档中,该文档也可作为我个人资料的链接

如何将 LinkedIn 徽标插入到我的文档中,该文档也可作为我个人资料的链接

我想在我的文档中插入一个 LinkedIn 徽标,它也可作为我个人资料的链接。

这是我的代码

\documentclass{article}

\usepackage{hyperref}
\usepackage[demo]{graphicx}
\usepackage{wrapfig}
\usepackage{lipsum}
\usepackage{fontawesome}
\usepackage{setspace}

\begin{document}
\begin{wrapfigure}{l}{25mm} 
    \includegraphics[width=1in,height=1.5in,clip,keepaspectratio]{AuthorImage}
\end{wrapfigure}\par
\textbf{Author A} \lipsum[1]  

\begin{figure}
    \centering
    \href{http://www.google.de}{%
        \scalebox{0.1}{
            \parbox{\textwidth}{
                \centering
                \includegraphics{LinkedinImage}}
        }
    }
\end{figure}
\end{document}

我正在尝试隐藏 LinkedIn 徽标作者A或段落末尾。

谢谢

答案1

如果你摆弄这个平均能量损失,你应该能够解决你的问题。当然,你可以适应图标以及您在超链接中输入的内容!

\documentclass{scrartcl}
    \usepackage{hyperref}
    \usepackage{fontawesome}
\begin{document}
    Check-out my profile: \href{https://www.linkedin.com}{\faLinkedinSquare}
\end{document}

平均能量损失

在这种情况下,使用fontawesome图标可能比嵌入图像更好,因为它是矢量化的并且与行高匹配。但是,您不只有两个显示器。

相关内容