multicols to respect \nopagebreak
- by hack.augusto
I have a list inside multicols, but the list item is being break, how could I suppress this behavior?
here is a bit of code:
\documentclass{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\begin{itemize}
\item{1}
\subitem{2}
% i want to break here
\item{asdf}
% its being break here
\subitem{qwerty}
% or to break here
\item{lorem}
\subitem{iptsum}
\subitem{dvorak}
\end{itemize}
\end{multicols}
\end{document}