如何增加 moderntimeline 和文本之间的水平空间?

如何增加 moderntimeline 和文本之间的水平空间?

这个问题与

我在用模板,并且,我无法通过更改来更改日期和内容之间的空格\separatorcolumnwidth

我怎样才能这样做?

答案1

只需将命令\setlength{\separatorcolumnwidth}{0.25\textwidth}或添加\setlength{\separatorcolumnwidth}{3cm}到您的序言中。根据需要更改使用的值...

使用以下 MWE

\documentclass{moderncv}

\usepackage{moderntimeline}
\moderncvtheme{classic}
\tlmaxdates{2007}{2012}

\setlength{\separatorcolumnwidth}{0.25\textwidth} % 0.025 <=============

\firstname{John}
\familyname{Doe}


\begin{document}
\tlcventry{2010}{0}{I'm still doing this!}{}{}{}{}
\tlcventry{2009}{2010}{Then I did something else.}{}{}{}{}
\tlcventry{2009}{2009}{I did something cool for just one year.}{}{}{}{}
\tlcventry{2007}{2009}{A regular entry}{}{}{}{}
\end{document}

你得到了想要的结果:

在此处输入图片描述

相关内容