Quero modificar o primeiro campo do
\cventry{Aug 2014 - Present}{WiMi}{LMU}{}{}{}
de uma forma que é irregular. Isso pode ser igualmente interessante para:
\cvitem
\cvitemwithcomment
Isso é possível no arquivo .tex ou preciso modificar moderncv.cls e moderncvstyleclassic.sty?
Aqui um exemplo mínimo:
% "ModernCV" CV and Cover Letter
% LaTeX Template
% Version 1.11 (19/6/14)
% Original author:
% Xavier Danaux ([email protected])
\documentclass[11pt,a4paper,sans]{moderncv}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{fixltx2e}
\usepackage{eurosym}
\usepackage{etoolbox}
\moderncvstyle{classic}
\moderncvcolor{grey}
\usepackage[scale=0.75]{geometry}
\firstname{Thomas}
\familyname{Mueller}
\title{Curriculum Vitae}
\begin{document}
\makecvtitle
\section{Experience}
\cventry{Aug 2014 - Present}{WiMi}{LMU}{}{}{
\begin{itemize}
\item Development of stuff,
\item Misc analysis.
\end{itemize}}
\section{Phd thesis}
\cvitem{Title:}{\emph{The ball and You}}
\cvitem{Supervisors:}{Adam\& Eva}
\cvitem{Description:}{Random Text.}
\section{Languages}
\cvitemwithcomment{Mothertongue:}{German}{}
\cvitemwithcomment{Intermediate:}{English}{Conversationally fluent}
\end{document}
O que leva ao gráfico a seguir. Só para deixar claro, quero que as datas estejam corretas (agosto de 2014 - presente)
Responder1
\noexpand
Adicione estes ao seu preâmbulo:
\usepackage{xpatch}% http://ctan.org/pkg/xpatch
% \xpatchcmd{<cmd>}{<search>}{<replace>}{<success>}{<failure>}
\xpatchcmd{\cvitem}{\raggedleft\hintstyle{#2}}{\raggedright\hintstyle{#2}}{}{}
\expandir
Os \cventry
usos \cvitem
e o \cvitem
é definido como
\renewcommand*{\cvitem}[3][.25em]{%
\begin{tabular}{@{}p{\hintscolumnwidth}@{\hspace{\separatorcolumnwidth}}p{\maincolumnwidth}@{}}%
\raggedleft\hintstyle{#2} &{#3}%
\end{tabular}%
\par\addvspace{#1}}
Você pode ver um \raggedleft
acima que deve ser substituído por \raggedright
. Como \cvitem
usa um argumento opcional, o patch é melhor feito com \xpatchcmd
from xpatch
package.
Código completo:
% "ModernCV" CV and Cover Letter
% LaTeX Template
% Version 1.11 (19/6/14)
% Original author:
% Xavier Danaux ([email protected])
\documentclass[11pt,a4paper,sans]{moderncv}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{fixltx2e}
\usepackage{eurosym}
\usepackage{etoolbox}
\moderncvstyle{classic}
\moderncvcolor{grey}
\usepackage[scale=0.75]{geometry}
\firstname{Thomas}
\familyname{Mueller}
\title{Curriculum Vitae}
\usepackage{xpatch}% http://ctan.org/pkg/xpatch
% \xpatchcmd{<cmd>}{<search>}{<replace>}{<success>}{<failure>}
\xpatchcmd{\cvitem}{\raggedleft\hintstyle{#2}}{\raggedright\hintstyle{#2}}{}{}
\begin{document}
\makecvtitle
\section{Experience}
\cventry{Aug 2014 - Present}{WiMi}{LMU}{}{}{
\begin{itemize}
\item Development of stuff,
\item Misc analysis.
\end{itemize}}
\section{Phd thesis}
\cvitem{Title:}{\emph{The ball and You}}
\cvitem{Supervisors:}{Adam\& Eva}
\cvitem{Description:}{Random Text.}
\section{Languages}
\cvitemwithcomment{Mothertongue:}{German}{}
\cvitemwithcomment{Intermediate:}{English}{Conversationally fluent}
\end{document}