I've chosen to create my resume in LaTeX ( out of curiosity ).
I thought printing a "clean" symbol of a phone before my phone_no will look nice ...
Is there such a symbol? any packages?
I've chosen to create my resume in LaTeX ( out of curiosity ).
I thought printing a "clean" symbol of a phone before my phone_no will look nice ...
Is there such a symbol? any packages?
DeTeXify gives the following packages and symbols for a (old-fashioned) land-line phone and a mobile phone:
\usepackage{wasysym}
\phone

\usepackage{marvosym}
\Mobilefone

You can easily find such symbols in the Comprehensive LaTeX Symbol List. For example, from bbding, wasysym and ifsym:

Just look out for \Phone, \phone and \Telephone.
Some more possibilities:
% arara: lualatex
\documentclass{article}
\usepackage{fontspec}
\newcommand*{\mobilePhone}{{\fontspec{symbola.ttf}\symbol{"1F4F1}}}
\newcommand*{\clamshellMobilePhone}{{\fontspec{symbola.ttf}\symbol{"1F581}}}
\newcommand*{\phoneA}{{\fontspec{code2000.ttf}\symbol{"260E}}}
\newcommand*{\phoneB}{{\fontspec{symbola.ttf}\symbol{"260E}}}
\newcommand*{\phoneC}{{\fontspec{quivira.otf}\symbol{"260E}}}
\newcommand*{\phoneWhiteA}{{\fontspec{code2000.ttf}\symbol{"260F}}}
\newcommand*{\phoneWhiteB}{{\fontspec{symbola.ttf}\symbol{"260F}}}
\newcommand*{\phoneWhiteC}{{\fontspec{quivira.otf}\symbol{"260F}}}
\newcommand*{\phoneReceiverA}{{\fontspec{symbola.ttf}\symbol{"1F4DE}}}
\newcommand*{\phoneReceiverB}{{\fontspec{quivira.otf}\symbol{"1F4DE}}}
\usepackage{fontawesome}
\newcommand*\faMobile{{\FA\symbol{"F10B}}}
\begin{document}
Mobile phones:
\mobilePhone\clamshellMobilePhone\faMobile
Normal phones:
\phoneA\phoneB\phoneC\phoneWhiteA\phoneWhiteB\phoneWhiteC
Telephone receivers:
\phoneReceiverA\phoneReceiverB\faPhone
\end{document}

pdfLaTeX?
– Mario S. E.
May 06 '15 at 17:26
\faMobilePhone in the package fontawesome
– v.tralala
May 07 '20 at 03:13
I found the fontawesome5 package very helpful and easy to use. First found in this link: 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}