I\'m writing in R Markdown and have a contingency table that is quite wide. I am converting the R markdown document to a PDF using pandoc.
Is it possible to rotate o
You can add some LATEX code in your Rmd file :
\usepackage{lscape} \usepackage{pdfpages} Some text on a portrait page. \newpage \blandscape ## Title, lorem ipsum ```{r, results = "asis"} kable(iris[1:5,], caption = "Lorem again") ``` Lorem ipsum... \elandscape Some other text on a portrait page.