I have a .Rnw file that looks like this:
\documentclass[a4paper,11pt]{article}
\begin{document}
\title{}
\author{me}
\date{\today}
\maketitle
\section{Header}
<<table_mtcars, results = "asis">>=
stargazer(rbind(mtcars, mtcars, mtcars), summary = F)
@
\FloatBarrier
\end{document}
I can use knitr::knit
to produce a .tex file and then convert this to a PDF. The resultant PDF looks like this:
Note how the table disappears off the end of page 2 and doesnt resurface on page 3. How can I get the table to continue on page 3 of the PDF using stargazer?