I want to do something like the following in TeX:
\begin{nobreak}
Text here will not split over pages, it will remain
as one continuous chunk. If there isn't enough room
for it on the current page a pagebreak will happen
before it and the whole chunk will start on the next
page.
\end{nobreak}
Is this possible?
You could try:
samepageprevents LaTeX from pagebreaking within one paragraph, i.e. within thesamepageenvironment, pagebreaks are only between paragraphs. Thus, you neednopagebreakas well, to prevent LaTeX from pagebreaking between two paragraphs.