Text in der linken Spalte von moderncv überlappt sich mit der rechten Spalte

Text in der linken Spalte von moderncv überlappt sich mit der rechten Spalte

Ich habe versucht, einen Lebenslauf zu erstellen, und kann nicht herausfinden, warum nur die zweite Zeile überlagerten Text enthält. Unten sehen Sie den Code.

\documentclass{moderncv}
\moderncvtheme[blue]{casual}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.8]{geometry}
\firstname{Abhilash}
\familyname{Sukumari}
\email{[email protected]}
\homepage{www.asn.web.nsce}

\newcommand\Colorhref[3][cyan]{\href{#2}{\small\color{#1}#3}}

\begin{document}
\maketitle
\section{Professional network}

\cvline{Linkedin.com}        {\Colorhref{http://www.linkedin.com/pub/abhilash-sukumari/10/8a6/1a4}             {abhilash sukumari}   - Professional profile and links.    }
\cvline{Stackoverflow.com}       {\small\href{http://stackoverflow.com/users/51197/adam-matan}             {Adam Matan}   - My software questions and answers. } 
\cvline{twitter.com}         {\Colorhref[red]{http://twitter.com/justnoticed}{@justnoticed} - My tech tweets.}

\end{document}

Dies ist eine Momentaufnahme der Ausgabe, die ich erhalten habe.

Ausgabe

Antwort1

Wechseln Sie \hintscolumnwidthzu etwas, das funktioniert, z. B. 3 cm. Dies und vieles mehr finden Sie in der ausführlich kommentiertentemplate.texdenn moderncvdas dient als Dokumentation.

\documentclass{moderncv}
\moderncvtheme[blue]{casual}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.8]{geometry}
\firstname{Abhilash}
\familyname{Sukumari}
\email{[email protected]}
\homepage{www.asn.web.nsce}

\newcommand\Colorhref[3][cyan]{\href{#2}{\small\color{#1}#3}}

\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates

\begin{document}
\maketitle
\section{Professional network}

\cvline{Linkedin.com}        {\Colorhref{http://www.linkedin.com/pub/abhilash-sukumari/10/8a6/1a4}             {abhilash sukumari}   - Professional profile and links.    }
\cvline{Stackoverflow.com}       {\small\href{http://stackoverflow.com/users/51197/adam-matan}             {Adam Matan}   - My software questions and answers. } 
\cvline{twitter.com}         {\Colorhref[red]{http://twitter.com/justnoticed}{@justnoticed} - My tech tweets.}

\end{document}

Ausgabe

verwandte Informationen