改变列的对齐方式

改变列的对齐方式

我有以下来自 CV 模板的代码,目前它有两列左对齐。有没有办法让第二列与第一列内容的末尾保持一定距离(1ex),而不是第二列的全部从同一点开始?

\newenvironment{cvskills}{%
  \vspace{\acvSectionContentTopSkip}
  \vspace{-2.0mm}
  \begin{center}
    \setlength\tabcolsep{1ex}
    \setlength{\extrarowheight}{0pt}
    \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} l L{\textwidth * \real{0.9}}}
}{%
    \end{tabular*}
  \end{center}
}

相关内容