moderncv의 왼쪽 열에 있는 텍스트가 오른쪽 열과 겹칩니다.

moderncv의 왼쪽 열에 있는 텍스트가 오른쪽 열과 겹칩니다.

이력서를 작성하려고 했는데 왜 두 번째 줄에만 텍스트가 겹쳐져 있는지 알 수 없습니다. 아래는 코드입니다.

\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}

이것은 내가 얻은 출력의 스냅샷입니다.

산출

답변1

\hintscolumnwidth예를 들어 3cm와 같이 작동하는 것으로 변경하십시오 . 광범위하게 주석이 달린 항목에서 그 내용과 더 많은 내용을 찾을 수 있습니다.template.tex왜냐하면 moderncv그것이 문서 역할을 하기 때문입니다.

\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}

산출

관련 정보