現代の{CV}に関する質問

現代の{CV}に関する質問

私はmodern CVLaTeX で CV を作成するためにこのパッケージを使用しています。残念ながら少し急いでいたので MWE を作成できませんでしたが、鋭い目を持つユーザーが私の間違いを指摘してくれることを願っています。

コードにエラーが 2 つあります。履歴書に箇条書きを挿入しようとしているだけです。以前の回答を参考にしてコードを挿入しましたが、機能しません。

\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

エラーが 2 つあります。

  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} 

出力:

ここに画像の説明を入力してください

関連情報