Reputation: 53
I found reveal.js but I couldn't find a simple working example.
I found this but they are either too complex or cannot find the source.
Does anyone have a simple example?
Upvotes: 5
Views: 2284
Reputation: 20246
The reveal.js repository on GitHub is in itself a demo for a simple presentation.
You can simply fork the project on GitHub, clone the fork to your local file system and edit the index.html file in the root directory to get started with your presentation.
I myself have created several presentations this way, most recently this one: https://github.com/pahund/devugees-prez-oct2017
If you create your presentation on a special Git branch named gh-pages, you can even view it online without having to deploy it to a server, for example: https://pahund.github.io/devugees-prez-oct2017/
Upvotes: 2
Reputation: 1326596
If you don't want to install all the components (around npm) needed to use reveal.js, you can still use a docker image like agiled-de/reveal.js-docker
This images makes it easy to use reveal.js with docker. It supports the use of the following plugins:
- MathJax Enables you to write LaTeX formulas in your presentations
- reveal.js-menu Adds a menu to test themes, transitions and jump to slides
- Chalkbord Write on your slides or on a chalkboard
- Reveal.js-Title-Footer Adds a footer that will stay on every slide
- Charts To create charts within your presentation
- vis.js To create graphs in your presentation
And it has a demo_presentation/index.md
included.
Upvotes: 1