我正在处理 awesome-cv。我可以稍微调整一下间距,但我无法修改简历条目中组织名称和职位名称之间或职位名称和要点之间的间距。我认为我找到了 awesome-cv.cls 中需要关注的正确部分,但不确定要更改什么。
% Define an entry of cv information
% Usage: \cventry{<position>}{<title>}{<location>}{<date>}{<description>}
\newcommand*{\cventry}[5]{%
\vspace{-2.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
\ifempty{#2#3}
{\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
{\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
%%% I believe the lines above are what I should be focusing on, but haven't had success with inserting \vspace
\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
\vspace{3mm}