Skip to content

Artifacts: Slideshow

Stephen De Gabrielle edited this page Sep 8, 2023 · 3 revisions

moved to https://github.com/Racket-Cookbooks/Slideshow-cookbook#slideshow-cookbook

Simple slideshows: https://github.com/apg/slideshow-simple

Some #lang slideshow resources / examples

slideshow-pretty transitions

Live code in Slideshow

example of live code in a talk: https://github.com/mflatt/talks/tree/master/mredtalk3

include live video in slides

use #lang video to include live video in slides; https://github.com/videolang/website/blob/master/pub/icfp2017/slidesrc/slides.rkt

lexi-lambda/talks/blob/master/2020-06-effects/main.rkt

https://github.com/lexi-lambda/talks/blob/master/2020-06-effects/main.rkt

Animated slideshow

#lang slideshow

(require slideshow/code
         slideshow/play
         plot)

(play-n (lambda (n1 n2 n3)
          (vl-append (cellophane (t "Hello") (* n1 (- 1.0 n2)))
                     (rectangle (* 10 n1) (* 10 n1))
                     (arrow (* 30 n2) 0)
                     (circle (* 10 n3)))))

(slide (plot-pict (function sqr -1 1 #:label "y = x^2")))
Clone this wiki locally