quarto revealjs presentation column layout with spacing #5418
-
Hi! In quarto revealjs presentations, in order to create a slide with two columns with a bit of space in between I have created a middle empty column like this:
I believe I saw somewhere a better approach using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
TL;DR::: {layout="[ 0.5, -0.05, 0.45 ]"}
thing 1
thing 2
::: For more complex "element" in columns, use additional divs. ::: {layout="[ 0.5, -0.05, 0.45 ]"}
:::: {#first-column}
- thing 1a
- thing 1b

::::
:::: {#second-column}
thing 2
::::
::: Long version with linksI believe you are interested in this particular comments from another thread: #4959 (comment) (there are other Q&A) |
Beta Was this translation helpful? Give feedback.
TL;DR
For more complex "element" in columns, use additional divs.
Long version with links
I believe you are interested in this particular comments from another thread: #4959 (comment) (there are other Q&A)
There is sparse documentation here and there at the moment in the documentation, see https://quarto.org/docs/authoring/figures.html#complex-layouts.