r - Overlapping tables from grid.arrange in gridExtra -
i'm trying build automated report have 3 charts right underneath each other without margin space between each other. i've mocked problem following rmd script --- output: pdf_document --- ```{r setup, include=false} library(gridextra) ``` ```{r, echo=false} car_tbl <- tablegrob(mtcars[1:10,]) grid.arrange(car_tbl, car_tbl, car_tbl) ``` you can see how tables overlap each other. there seems there few issues comprising problem. how use options of tablegrob , grid.arrange keep tables overlapping. how make sure nothing cut off? in other words, how set graphic take whole page if need too? how can re-actively shrink text of plot fit on 1 page? how can set size of page whatever size want? there options set knitr document print pdf page of size want? perhaps poster size if need to? there different angles approach question. here's working example 3 tables fitting in 1 chunk placed on pdf of size a2. --- output: pdf_document geometry: paper=a2pape...