For example if my data frame was:
exampledf <- data.frame(column = c("exampletext1", "exampletext2", "exmapletext3"))
I would like the first page to have "exampletext1", the second page to have "exampletext2", etc.
\pagebreak
works:
```{r, echo=FALSE}; exampledf[1,]```
\pagebreak
```{r, echo=FALSE} exampledf[2,]```
But my data frame is too large to make it practical.
I really need to loop through all my values:
for(i in 1:NROW(exampledf)) {
single <- exampledf[i]
strwrap(single, 70))
}
It's a weird question I realize.