Type T to begin the slide show.
Make slides from Emacs Org-Mode!
Org-Mode headlines with the :slide:
tag will become slides.
This section doesn’t have a :slide:
tag, so it will not become a slide, although it is still part of the exported HTML document.
- Use Org-Mode lists for bullet points
- You can make nested bullet lists
- With sub-lists
- Like this
You can use the structure of the Org-Mode document to group your slides.
For example, this slide is a level-2 Org-Mode heading.
This slide is a level-3 Org-Mode heading, inside the previous one.
Use begin_src/end_src
blocks to include source code.
(defn example []
(println "This is sample source code."))
- Org-Mode HTML export uses htmlize.el
- Code in exported HTML will match your current Emacs theme
- Choose a theme that looks good on slides!
- Tip: launch Emacs with
-q
to skip your custom settings
- Slides can contain images
- Any file type a browser can display
- See also these Emacs variables
org-export-html-inline-images
org-export-html-inline-image-extensions
- Controls which file types get exported
- See Images in HTML Export in the Org-Mode manual.
Make a file:
link with the path to the image and no link text.
This example image is public-domain clip art by Josiah / yoderj.
- Use CSS styles to control appearance of slides
- Extra tags on a slide become extra CSS classes on its HTML
- This slide has the
:blue_background:
tag- Which is a class defined in
projection.css
- Which is a class defined in
- Make up your own tags
- Add them to the CSS file
Include the stylesheets and JavaScript at the bottom of your Org-Mode file.