I would like to increase the linespread within a group. Namely, the linespread within an inline-enumeration. For this purpose, I have the following code.
\documentclass[]{article}
\parindent 0cm
\usepackage{setspace}
\usepackage{enumerate}
\usepackage[inline,shortlabels]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemjoin = \hspace{0.7cm}, label=\alph*)}
\begin{document}
{
\setstretch{2}
\begin{choices}
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\end{choices}
}\\
\begin{choices}
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\end{choices}
\end{document}
I would, however, like to have only the first list spaced with double spacing. Like so
\documentclass[]{article}
\parindent 0cm
\usepackage{setspace}
\usepackage{enumerate}
\usepackage[inline,shortlabels]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemjoin = \hspace{0.7cm}, label=\alph*)}
\begin{document}
\setstretch{2}
\begin{choices}
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\item $XXXX$
\end{choices}
\end{document}
So, if I have only one list present, it works. As soon as there is another list, or other text, it doesn't. Can somebody help me?
Wrapping it in a minipage environment does the trick. Is there another solution?



