
質問パッケージを使用して履歴書の箇条書きを揃えるにはどうすればいいですか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}