kableExtra icon indicating copy to clipboard operation
kableExtra copied to clipboard

Putting two tables together on landscaped page

Open FelipeCarrillo opened this issue 2 years ago • 1 comments

Describe the bug A clear and concise description of what the bug is.

To Reproduce Think about using reprex to generate an example in R.

# code to reproduce the bug.

If you need to attach the entire rmarkdown doc, try to use ```` to quote your entire doc.

---
title: "A reproducible example in rmarkdown"
output: html_document
---

```{r}
library(kableExtra)
```

FelipeCarrillo avatar Jun 03 '22 23:06 FelipeCarrillo

This is not a bug, just trying to put two tables together on a landscaped page. This is the idea but it doesn't work: landscape(kbl(cbind(dt, dt, dt), booktabs = T)) %>% kable_styling(latex_options = c("striped", "scale_down"),stripe_color = "gray!15"), kbl(cbind(dt, dt, dt), booktabs = T)) %>% kable_styling(latex_options = c("striped", "scale_down"),stripe_color = "gray!15"))

FelipeCarrillo avatar Jun 03 '22 23:06 FelipeCarrillo