When using RMarkdown, is there a way to have output continue on a new page rather than just "running off the bottom?" I am using beamer output, so "pages" are relatively short--although I suppose this is a general question.
Note that \newpage and the like don't work because it is output from a single R command that produces the output that overflows a page.
A simple example is
results <- lm(INCTOT ~ AGE, data = data)
summary(results)