[Tex/LaTex] Bullet points in moderncv

moderncv

I wonder how to remove the bullet points in the moderncv footer between, e.g. mobile phone and email. I originally asked at

Removing Symbols from moderncv Document

Best Answer

There are more precise (but complex) ways to achieve this but the simplest is re-defining the \footersymbol

\renewcommand*{\footersymbol}{\qquad}

Code:

\documentclass[11pt,a4paper]{moderncv}
\usepackage[utf8]{inputenc}
\moderncvstyle{casual}
\moderncvcolor{green}
\usepackage[scale=0.75]{geometry}
\name{Some}{John Doe}
\title{Resume title}
\address{Dirección}{CP, Ciudad}{País}%
\phone[mobile]{000-000-000-000}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{mailmailmail@gmail.com}
\homepage{www.johndoe.com}
\extrainfo{additional information}
\photo[64pt][0.4pt]{picture}

\renewcommand*{\footersymbol}{\qquad}
%----------------------------------------------------------------------------------
%            content
%----------------------------------------------------------------------------------
\begin{document}
\maketitle
\end{document}

enter image description here