
질문: 패키지를 사용하여 CV의 글머리 기호를 어떻게 정렬합니까 Modern CV
? '경제 및 통계 튜터' 제목 아래에 통계 및 경제학 주요 항목을 다루고 싶습니다.
현재는 다음과 같습니다.
MWE:
% moderncv themes
\moderncvtheme[red]{classic} % optional argument are 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
%\moderncvtheme[green]{classic} % idem
% character encoding
\usepackage[utf8]{inputenc} % replace by the encoding you are using
% adjust the page margins
\usepackage[scale=0.8]{geometry}
%\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates
%\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}} % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
%\AtBeginDocument{\recomputelengths} % required when changes are made to page layout lengths
\usepackage{enumitem}
% personal data
\firstname{John}
\familyname{Doe}
\makeatletter
\renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
\makeatother
\nopagenumbers{}
\begin{document}
\maketitle
\section{Experience}
\cventry{Jan 2015 - Present}{Researcher}{Development Policy Research Unit}{University of Cape Town}{} {} {} {}
\vspace{1.0\baselineskip}
\cventry{Jun 2014 - July 2014}{Intern}{Economic Research Southern Africa}{Claremont}{}{Provided assistance on data compilation and cleaning. \newline{}Provided assistance on data analysis. \newline{}Provided assistance on literature searches.}
\vspace{1.0\baselineskip}
\cventry{Jul 2013 - Nov 2013}{Research Assistant}{University of Cape Town}{Cape Town}{}{Provided assistance regarding the literature review portion of the \newline{} WHO Alcohol Study report.}
\cventry{Feb 2012 - Nov 2014}{Economics 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}
답변1
목록을 항목 뒤가 아닌 항목에 넣으세요.
\cventry{Feb 2012 - Nov 2014}{Economics 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}}
추가하면 도움이 됩니다
\documentclass{moderncv}