The following is the problematic example:
\documentclass[12pt]{article}
\usepackage{longtable}
\usepackage{tabu}
\usepackage{array}
\usepackage{lipsum}
\begin{document}
{\setlength{\tabulinesep}{3pt}
\begin{longtabu}to \textwidth { | m{2cm} | X[c] | }
\hline
Item & item \\
\hline
Item &
\begin{enumerate}
\item \lipsum[1]
\item \lipsum[2]
\item \lipsum[3]
\item \lipsum[4]
\end{enumerate}\\
\hline
\end{longtabu}
\end{document}
It generates two pages
There are two problems:
- The
enumeratelist is split with first row, leaving the first row in the first page lonely. - The
enumeratelist is directly running out of the second page. How to solve this inlongtabu?
Can't latex just achieve the effect of MS word? In MS word, you just keep typing with list like, and they automatically across the page like this




\setcounter{enumi}{6}after the\begin{enumerate}or theenumitempackage gives the environment aresumeoption to make it carry on from the previous. – David Carlisle Dec 01 '15 at 10:54tcolorbox, but his answer is not complete. for exmaple, I am still struggling with wrapping of items, don't know how to do it. And what about more than two columns, Fischer didn't give – user15964 Dec 01 '15 at 13:09