최신 {CV} 질문

최신 {CV} 질문

저는 이 modern CV패키지를 사용하여 Latex로 CV를 작성하고 있습니다. 불행하게도 제가 좀 바빠서 MWE를 생성할 수 없었습니다. 하지만 독수리 눈을 가진 한 명의 사용자가 제가 어디에서 잘못되었는지 알아낼 수 있기를 바랍니다!

내 코드에 두 가지 오류가 있습니다. 이력서에 글머리 기호를 삽입하려고 합니다. 이전 답변을 사용하여 코드를 삽입했지만 작동하지 않습니다.

\cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}
\begin{itemize}[label=\textbullet]
\item{\textbf{Statistics}:}Prepared tutorials, marked tests and projects and participating in computer lab sessions.
\item{\textbf{Economics}}: Ensured timely upload of documents and other administrative duties
\end{itemize}

둘째, 다음 코드는 실행되지 않습니다. 특히 그 아래 섹션(컴퓨터 기술 섹션)이 작동하기 때문에 이유를 모르겠습니다.

\section{Awards}
\cvline{UCT Masters Research Scholarship}{2013 - 2014}
\cvline{Commerce Faculty Merit Scholarship} {2010 - 2012}
\cvline{Dean's Merit List (obtaining an aggregate of over 70%)} {2009 - 2012} 

\section{Computer skills}
\cvline{Intermediate}{\small Stata, \LaTeX}
\cvline{Expert}{\small Word, Excel, Powerpoint}

답변1

두 가지 오류가 있습니다.

  1. 줄에

    \cvline{Dean's Merit List (obtaining an aggregate of over 70%)} {2009 - 2012}
    

    %로 교체하다\%

  2. \cventry6개의 인수가 있는데 5개만 제공합니다. 그러니 쓰세요

    \cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}{}
    

    대신에

    \cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}
    

MWE:

\documentclass[11pt,a4paper,sans]{moderncv}

\usepackage{enumitem}

\moderncvstyle{casual}
\moderncvcolor{blue}

\name{John}{Doe}

\begin{document}

\section{Awards}
\cvline{UCT Masters Research Scholarship}{2013 - 2014}
\cvline{Commerce Faculty Merit Scholarship} {2010 - 2012}
\cvline{Dean's Merit List (obtaining an aggregate of over 70\%)} {2009 - 2012}

\section{Computer skills}
\cvline{Intermediate}{\small Stata, \LaTeX}
\cvline{Expert}{\small Word, Excel, Powerpoint}

\cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}{}
\begin{itemize}[label=\textbullet]
\item{\textbf{Statistics}:}Prepared tutorials, marked tests and projects and participating in computer lab sessions.
\item{\textbf{Economics}}: Ensured timely upload of documents and other administrative duties
\end{itemize}

\end{document} 

여기에 이미지 설명을 입력하세요


편집 (OP의 의견에 따라)

항목을 위에 있는 항목과 정렬하려면 itemize다음 옵션을 에 추가하세요 itemize.

leftmargin=\hintscolumnwidth+\separatorcolumnwidth

\hintscolumnwidth는 a의 첫 번째 열 너비 \cventry이고 \separatorcolumnwidth는 구분 기호 너비입니다. 로드되기 때문에 이 작업은 ( 없이 \dimexpr) 이 방식으로 수행될 수 있습니다 .moderncvcalc

MWE:

\documentclass[11pt,a4paper,sans]{moderncv}

\usepackage{enumitem}

\moderncvstyle{casual}
\moderncvcolor{blue}

\name{John}{Doe}

\begin{document}

\section{Awards}
\cvline{UCT Masters Research Scholarship}{2013 - 2014}
\cvline{Commerce Faculty Merit Scholarship} {2010 - 2012}
\cvline{Dean's Merit List (obtaining an aggregate of over 70\%)} {2009 - 2012}

\section{Computer skills}
\cvline{Intermediate}{\small Stata, \LaTeX}
\cvline{Expert}{\small Word, Excel, Powerpoint}

\cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}{}
\begin{itemize}[label=\textbullet,leftmargin=\hintscolumnwidth+\separatorcolumnwidth]
\item{\textbf{Statistics}:}Prepared tutorials, marked tests and projects and participating in computer lab sessions.
\item{\textbf{Economics}}: Ensured timely upload of documents and other administrative duties
\end{itemize}

\end{document} 

산출:

여기에 이미지 설명을 입력하세요

관련 정보