chore(docs): improving the docs a bit more (#116)

* chore(docs): improving the docs a bit more

This adds some useful extensions, links, and add. information.

* fix(deps): update lockfiles no-cache
This commit is contained in:
Jérome Eertmans
2023-01-31 10:29:21 +01:00
committed by GitHub
parent e9d28dc0a8
commit 205972125c
5 changed files with 69 additions and 4 deletions

View File

@ -2,7 +2,28 @@
Contents of `example.py`.
Do not forget to import Manim Slides and Manim or ManimGL.
Do not forget to import Manim Slides and Manim or ManimGL:
```python
from manim import *
from manim_slides import Slide, ThreeDSlide
```
or
```python
from manimlib import *
from manim_slides import Slide, ThreeDSlide
```
Then, each presentation, named `SCENE`, was generated with those two commands:
```bash
manim example.py SCENE # or manimgl example SCENE
manim-slides convert SCENE -ccontrols=true
```
where `-ccontrols=true` indicates that we want to display the blue navigation arrows.
## Basic Example