[Tex/LaTex] “+” sign in international phone numbers

addressessymbols

I want a smaller "+" sign in international phone numbers. For example if I write

+1-123-456-7890

it gives

+1-123-456-7890

where "-" signs are all okay (not pretty though), but the "+" sign looks too big. How can I make it smaller? Is there any special symbol in LaTeX?

Best Answer

An option could be to use + and - in monospaced font:

\documentclass{article}

\def\Plus{\texttt{+}}
\def\Minus{\texttt{-}}

\begin{document}

\Plus 1\Minus 123\Minus 456\Minus 7890

\end{document}

enter image description here