I would like to have a picture on the left side of a slide, and text on the right side. I am using Quarto reveal.js
.
I would expect that with the .columns
div, it should work, but this gives unexpected result. Same with using layout-ncol=2
. Any ideas?
A reproducible example:
---
format: revealjs
---
## A title
::: {layout-ncol=2}
Some text that is very long and that should take most of the column space.
![](https://www.r-project.org/logo/Rlogo.png)
Some other text that should be below the first paragraph.
:::
## Another title
:::: .columns
::: {.column width=60%}
Some text that is very long and that should take most of the column space.
:::
::: {.column width=40%}
![](https://www.r-project.org/logo/Rlogo.png)
:::
::::