7

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.

lockstep
  • 250,273
Nico
  • 71

1 Answers1

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