Trying to use manim in revealjs presentation #14320
-
DescriptionI am tyring do render manim animations to be outputed in a reveajs presentation written in quarto. So I tried this: ---
title: "manim test"
format: revealjs
log-level: debug
execute:
python: .venv/bin/python
external: true
---
# Header
## Manim
```{python}
from manim import *
```
```{python}
#| output: false
%%manim -qm CircleExample
from manim import *
class CircleExample(Scene):
def construct(self):
circle = Circle()
self.play(Create(circle))
self.wait()
```
The cell gets executed, a video gets rendered (I can see the output file) but nothing is inserted in the presentation. Thanks! quarto --version
1.9.36I am on nixos inside wsl. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Why would you expect an output with See the documentation: https://quarto.org/docs/computations/execution-options.html Did you use LLM to produce this document? Did you check the options? This is made up. log-level: debug
execute:
python: .venv/bin/python
external: trueI strongly suggest you read the documentation on computation and ask your LLM to do the same. |
Beta Was this translation helpful? Give feedback.
Why would you expect an output with
#| output: false?See the documentation: https://quarto.org/docs/computations/execution-options.html
Did you use LLM to produce this document? Did you check the options?
This is made up.
I strongly suggest you read the documentation on computation and ask your LLM to do the same.