Create a single revealjs presentation from multiple qmd files #6333
-
DescriptionI would like to combine a set of qmd files into a single revealjs presentation. What would be the easiest way to achieve this in Quarto? Currently my .. and as a result I want a single slide deck comprising slidedeck1.qmd to slidedeck3.qmd. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
|
You could use But this suppose your individual file are fragment of a main presentation. If each file is a single slidedeck at the beginning, you may need some preprocessing or using some Lua filters to adapt content. Anyhow, there is no project options as you tried to merge document into one. What you configured for now tells quarto to:
Hope it helps |
Beta Was this translation helpful? Give feedback.


You could use
includesto add content of several files into a main file: https://quarto.org/docs/authoring/includes.htmlBut this suppose your individual file are fragment of a main presentation.
If each file is a single slidedeck at the beginning, you may need some preprocessing or using some Lua filters to adapt content.
Anyhow, there is no project options as you tried to merge document into one. What you configured for now tells quarto to:
revealjsformat by defaultrender:output_dirHope it helps