I want to use the description environment with the actual description starting on a new line. As https://tex.stackexchange.com/a/69525/293290 suggests, I am using the enumitem package and I have set style=nextline. But it doesn't work when the description is another environment, in my case enumerate.
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{description}[style=nextline]
\item[Offset]
\begin{enumerate}
\item First line.
\item Second line.
\item Third line.
\end{enumerate}
\end{description}
\end{document}
I've tried to insert a space in between, but it made a giant space.
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{description}[style=nextline]
\item[Offset]~
\begin{enumerate}
\item First line.
\item Second line.
\item Third line.
\end{enumerate}
\end{description}
\end{document}
I have searched for other solutions and I came across How can I force all text to continue to the next line when using style=nextline in description lists with enumitem?, but this also doesn't solve my problem. How can I fix this?



enumerateoritemizewon't be affected at all which is an improvement over the other solution posted here (but both solutions work). Thanks! – user13840624 Mar 19 '23 at 21:28