Skip to content

Racket-Cookbooks/Slideshow-cookbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Slideshow Cookbook

Racket Slideshow cookbook

Racket Discourse users Racket Discord

Welcome to the Racket Slideshow Cookbook. This is a growing collection of recipes for creating the tastiest presentations with the Racket Slideshow library (documentation).

If you would like to contribute please create an issue or pull request with your contribution. Please include image, code, and short description.

Contributions are accepted on the condition they are licenced under the same terms as Racket: MIT or Apache 2.

Packages

Some #lang slideshow resources / examples

Live code in Slideshow:

https://github.com/mflatt/talks/tree/master/mredtalk3

Including live video in slides

https://github.com/videolang/website/blob/master/pub/icfp2017/slidesrc/slides.rkt

Animated slideshow example

#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")))

Releases

No releases published

Packages

No packages published