[Tex/LaTex] How to prevent pagebreak in description environment

descriptionlistspage-breaking

I have a simple List in the description Environment.

\begin{description}
  \item [item] number one
  \item [item] number two
\end{description}

there is a new new page between the first item and the second. Is there a way to prevent this? I'd rather have the complete list coherent on a new page.

Best Answer

\noindent
\begin{minipage}{\linewidth}
\begin{description}
  \item [item] number one
  \item [item] number two
\end{description}
\end{minipage}