-
I have a slide that looks like this
when i render the slides the layout that is chosen by quarto/pandoc is Do I need to do something else in the script to get it to use the Documentation:
_quarto.ymlproject:
type: default
format: pptx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your example does not follow the documentation for the "comparison" layout. The column needs to have "text followed by non-text". ---
format: pptx
---
## My Header
::: columns
::: {.column}
- bullet 2
- bullet 3
:::
::: {.column}
- @fig-myfig shows something amazing.
{#fig-myfig}
:::
::: |
Beta Was this translation helpful? Give feedback.
Your example does not follow the documentation for the "comparison" layout.
You have a text column and an image column.
The column needs to have "text followed by non-text".