
Estoy usando el modern CV
paquete para crear un CV en Latex. Desafortunadamente, tengo un poco de prisa, por lo que no pude crear un MWE, pero espero que un usuario con vista de águila pueda identificar dónde me equivoqué.
Solo tengo dos errores con mi código. Sólo estoy intentando insertar viñetas en el CV. Usando una respuesta anterior, inserté el código pero no funciona:
\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}
En segundo lugar, el siguiente código no se ejecuta y no tengo idea de por qué, especialmente porque la sección debajo (la sección Habilidades informáticas) funciona...
\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}
Respuesta1
Tienes dos errores.
En la linea
\cvline{Dean's Merit List (obtaining an aggregate of over 70%)} {2009 - 2012}
reemplazar
%
con\%
\cventry
tiene seis argumentos y le estás dando sólo cinco. entonces escribe\cventry{Feb 2012 - Nov 2014}{Ecnomics and Statistics Tutor}{University of Cape Town}{Cape Town}{}{}
en lugar de
\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}
EDITAR (según el comentario de OP)
Si desea alinear los itemize
elementos con las entradas que se encuentran encima de ellos, agregue la siguiente opción a su itemize
:
leftmargin=\hintscolumnwidth+\separatorcolumnwidth
\hintscolumnwidth
es el ancho de la primera columna de a \cventry
y \separatorcolumnwidth
es el ancho del separador. Tenga en cuenta que esto se puede hacer de esta manera (sin \dimexpr
) porque moderncv
se carga calc
.
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}
Producción: