I'm using a list from enumitem-package inside table from tabularx-package. Between the table-row, which contains the list, and and the next table-row there is a space I would like to avoid. How do I do that? This is some basic example code:
\documentclass{article}
\usepackage{tabularx} % featured tables
\usepackage{enumitem} % control layout of itemize, enumerate, description
\setlist{nosep}
\setlist[itemize,1]{leftmargin=\dimexpr 1em}
\renewcommand{\arraystretch}{1.3} % table spacing
\begin{document}
\begin{tabularx}{\textwidth}{p{4cm}X}
lorem ipsum a & lorem ipsum b
\begin{itemize}[label=--]
\item lorem ipsum c
\item lorem ipsum d
\end{itemize}\\
lorem ipsum e & lorem ipsum f\\
\end{tabularx}
\end{document}
It looks like this:

