Include qmd-files for each chapter into a main qmd-file #8421
-
DescriptionI want to include qmd-files for each chapter into a main qmd-file Code in the main qmd file
Code in the test.qmd
|
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Jan 24, 2024
Replies: 1 comment 2 replies
-
What's the question? Did you take a look at?
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
engine: knitr
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```

The end.
```` |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PS: your shortcode is not valid
{{ < include _test.qmd > }}
is incorrect.{{< include _test.qmd >}}
is.See https://quarto.org/docs/authoring/includes.html.