XeLatex 中的电话符号/网站徽标

XeLatex 中的电话符号/网站徽标

\texttt{ÔÑã}~\href{tel:\myphone}{\myphone}\\ 在 pdf 文件上生成一个移动图标,这个图标 href{https://www.linkedin.com/in/\myweb} {\texttt{ÔÇå}~\myweb}会在 url 旁边生成一个漂亮的小 Linkedin 标志。

谁能告诉我里面的特殊字符如何textttt{}引用这些图标和标志?

谢谢

答案1

ÔÑãÔÇå是 Unicode 代码点,以 mac roman 编码查看:

ÔÑã: 0xEF, 0x84, 0x8B -> U+F10B
ÔÇå: 0xEF, 0x82, 0x8C -> U+F08C

Unicode 块是私有区域。Font Awesome 将此区域用作其符号:

U+F10B:\faMobile\faicon{mobile}
U+F08C:\faLinkedinSquare\faicon{linkedin-square}

\documentclass{article}
\usepackage{fontawesome}
\begin{document}
\faMobile/\faicon{mobile} and \faLinkedinSquare/\faicon{linkedin-square}
\end{document}

结果

相关内容