Open
Description
openedon Jul 1, 2022
Repro:
---
title: "sidebyside"
format: pdf
editor: visual
keep-tex: true
---
```{r}
#| layout-ncol: 2
#| layout-valign: bottom
#| fig-cap: "A plot"
#| tbl-cap: "A table"
library(knitr)
# plot on the left
plot(cars)
# table on the right
kable(head(cars))
```
Note the duplicated caption on the figure:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment