-
DescriptionI've started playing around with Quarto for over a week now and I love it coming from beamer. I'm wondering if there is any way to embed a matplotlib animation generated with I know that animations can be rendered in jupyter using "magic commands" such as Right now I'm saving the animation to a video and embedding in the video in the presentation. This is fine, but it would be much better if it was integrated in the .qmd document as when generating static figures. Thank you for the help and this wonderful project! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The same thing should be possible in Quarto since it can reads directly from a Notebook. 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
---
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.
The same thing should be possible in Quarto since it can reads directly from a Notebook.
Because this is mostly related to the library you are using rather than Quarto itself.
For further help, a reproducible document (or a simple Git repository) to work with is necessary.
You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four
````
).