The longtable environment can create a note at the bottom of the part of a table that notifies the reader that the rows are “continued on the next page” Is there a way to do that with a list environment?
\documentclass{article}
\begin{document}
\begin{itemize}
(Notification code goes here.)
\item A
\item B% Getting close to the bottom of the current page
\item C
\item D
\end{itemize}
\end{document}
This should produce something like
• A
• B
(list continued on next page)
(Next page here)
• C
• D
