Reveal.js: HTML presentation framework
41–50 of 109 posts
Re: Reveal.js: HTML presentation framework
#42I found out recently that pandoc can take text markdown-ish files and turn them into * Beamer presentations * Powerpoint presentations * Reveal.js presentations Kind of crazy and interesting. I made a nuclear power deck with it and it worked ok. https://pandoc.org/MANUAL.html#slide-shows
Re: Reveal.js: HTML presentation framework
#43All of them are based on Shower [2] and to prepare a new presentation I just copy-paste previous presentation and edit HTML directly... actually very understandable and convenient even for C++ developer.
- [1] https://github.com/ClickHouse/clickhouse-presentations - [2] https://shwr.me/
Re: Reveal.js: HTML presentation framework
#44Re: Reveal.js: HTML presentation framework
#45I tend to think that page-based presentation is becoming a thing of the past. I usually write a big sprawling one-page HTML, magnify it, and do a presentation by gradually scrolling them. The advantages are obvious: - No need to tweak the content to fit the page boundary. - Highly accessible (adjustable to any screen). - No JS. - All figures are in SVGs. - Can also support printing (just insert CSS page break). - (ed…
Anyway, do you use a template? Or any tooling?
Re: Reveal.js: HTML presentation framework
#46If you want it quick. https://mark.show proudly powered by RevealJS
Re: Reveal.js: HTML presentation framework
#47I used this for a pretty casual work presentation. It came out nicely and the presentation went without a hitch. I liked the flexibility in slide progression (you can easily create a graph of sorts to pick different paths to go through as a presenter, instead of just a linear progression). But honestly I struggle to think of many cases where you really need HTML/JS for your presentation.
Re: Reveal.js: HTML presentation framework
#48ClickHouse presentations are almost 100% in HTML [1]. All of them are based on Shower [2] and to prepare a new presentation I just copy-paste previous presentation and edit HTML directly... actually very understandable and convenient even for C++ developer. - [1] https://github.com/ClickHouse/clickhouse-presentations - [2] https://shwr.me/
You can make reveal.js slides in a gui at slides.io
Re: Reveal.js: HTML presentation framework
#49Wow, spent some time fiddling with this framework. I really like it and I think the potential is huge, unfortunately I am too lazy so I will probably just stick with PowerPoint. Maybe make an adapter and publish to this format is possible..?
- ODT -> PDF - PDF -> directory of PNG images
Then all you need is a basic web page with an image and some nav buttons, coupled with some JS that knows the list of files and can update the image's URL based on nav button clicks. At the end you have a portable web slide deck.
Fancier setups are definitely possible (you could for example mimic multi-monitor presenter mode by having multiple pages where one drives the other via websockets, or even just add a timer and presenter's notes) but it gets around having to hope that the other side has a decent PDF reader or a presentation editor that likes your preferred file format.
Re: Reveal.js: HTML presentation framework
#50It's solid for creating basic slides quickly, and it supports exporting to PDF by having your printer print the PDF from a browser (it came out perfect). Here's a 100+ slide PDF of a talk I did the other month with Reveal using an out of the box theme: https://github.com/nickjj/nyhackr-cli-dev-env/blob/master/ny... The PDF doesn't show it but I had a lot of animated gifs (almost every terminal screenshot is animated)…