I have the following macro to format all my table together inside of my CV.
\documentclass[a4]{article}
\usepackage[left=1.5cm,top=2cm,right=1.5cm,bottom=2.5cm,nohead,nofoot]{geometry}
\setlength{\tabcolsep}{0pt}
\newenvironment{entrylist}{%
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll}
}{%
\end{tabular*}}
\renewcommand{\bfseries}{}
\newcommand{\entryacquis}[5]{%
#1&\parbox[t]{14.5cm}{%
\textbf{#2}%
\hfill%
{\footnotesize #3}\\%
#4}\\
{Skills~:} }
\begin{document}
\begin{entrylist}
\entryacquis
{6\thinspace --\thinspace 8.2008}
{Job Position}
{A company}
{Job description}
{Some learned skills}
\end{entrylist}
\end{document}
How can I make the line spacing between the job description row and the skills row the same as between two normal text line ? That on is for some reason smaller.
I already tried to add \baselineskip, \linebreak, \vspace but I didn't get it to work properly.
![[1]: https://i.stack.imgur.com/E7qD5.png](../../images/c8153a0ec440c0461a03ce384b8b968a.webp)

#4}\\[16pt]in your command definition... – Thruston Jun 02 '16 at 10:09