简历中的电话号码符号

简历中的电话号码符号

我选择用 LaTeX 创建我的简历(出于好奇)。

我认为在我的 phone_no 之前打印一个电话的“干净”符号会很好看......

有这样的符号吗?有包裹吗?

答案1

去特化给出了(老式)固定电话和移动电话的以下包装和符号:

\usepackage{wasysym}
\phone

\usepackage{marvosym}
\Mobilefone

答案2

你可以很容易地找到这样的符号全面的 LaTeX 符号列表。例如,来自 bbding、wasysym 和 ifsym:

在此处输入图片描述

只需留意\Phone\phone\Telephone

答案3

marvosym套餐提供\Telefon

在此处输入图片描述

答案4

我发现fontawesome5软件包非常有用且易于使用。首先在此链接中找到:https://latexdraw.com/fontawesome-ready-icons-to-use-in-latex/

\documentclass{article}

\usepackage{fontawesome5}

\begin{document}
    Telephone: 
    \faIcon{phone} \faIcon{phone-alt} \faIcon{phone-slash} \faIcon{phone-square} \faIcon{phone-square-alt} 
    
    Mobile: 
    \faIcon{mobile} \faIcon{mobile-alt}
\end{document}

手机图片

相关内容