[Tex/LaTex] LinkedIn logo in Latex

logos

How could I get a LinkedIn logo (like those found in http://press.linkedin.com/Media-Resources?SubjectID=644) in Latex?

I found some tikz code somewhere, but that was not for one in blue, and it didn't look quite the same.

Example:

Enter image description here

Best Answer

fontawesome provides a number of "Social icons":

enter image description here

\documentclass{article}
\usepackage{fontawesome}
\usepackage{setspace}
\begin{document}
\doublespacing% Just for this example
\verb|Facebook|: \faFacebook \quad \faFacebookSquare \par
\verb|Twitter|: \faTwitter \quad \faTwitterSquare \par
\verb|Github|: \faGithub \quad \faGithubSquare \par
\verb|HTML5|: \faHtml5 \par
\verb|LinkedIn|: \faLinkedin \quad \faLinkedinSquare \par
\verb|Pinterest|: \faPinterest \quad \faPinterestSquare \par
\verb|Google+|: \faGooglePlus \quad \faGooglePlusSquare
\end{document}

It requires compilation via XeLaTeX or LuaLaTeX.


Following the discussion on LinkedIn Branding Guidelines, you can also download the EPS versions of the LinkedIn logo and include them using \includegraphics (from graphicx).

Related Question