Awesome-CV
Awesome-CV copied to clipboard
Changing the line spacing between cvitems
Hi, I am wondering if anybody know how to adjust the line spacing (either increase or decrease) between items in cvitems
, not between sections
Thanks in advance
In resume.tex, add and adjust the numbers to your liking. (bigger number means smaller spacing)
\vspace{\acvSectionContentTopSkip}
\vspace{-4mm}
\import{\sectiondir}{experience.tex}
\vspace{\acvSectionContentTopSkip}
\vspace{-8mm}
\import{\sectiondir}{extracurricular.tex}
\vspace{\acvSectionContentTopSkip}
\vspace{-4mm}
\import{\sectiondir}{presentation.tex}
\vspace{\acvSectionContentTopSkip}
\vspace{-4mm}
\import{\sectiondir}{honors.tex}
Hi! I used your solution and it works, but I'm not sure I understand what \acvSectionContentTopSkip does. Is it a standard command?
Thank you :)
@elsietheengineer \acvSectionContentTopSkip is basically a variable that contains some spacing metric. It's assigned here:
https://github.com/posquit0/Awesome-CV/blob/5b05d935658377c73a3456269d23a276b19804f7/awesome-cv.cls#L407