latex kable side-by-side tables “Not in outer par mode”
问题 I am trying to create a page with side-by-side tables. I used other SO answers to do this for a simple table ```{r start-block, include=F,echo=F} library(dplyr) library(knitr) library(kableExtra) ``` ```{r sample, echo=FALSE, results='asis'} t1 <- kable(head(mtcars)[1:3], format = "latex", booktabs = TRUE) %>% kable_styling(latex_options = c("striped"), font_size=5) t2 <- kable(head(mtcars)[4:6], format = "latex", booktabs = TRUE) %>% kable_styling(latex_options = c("striped"), font_size=5)