Skip to content

Latest commit

 

History

History
148 lines (100 loc) · 2.99 KB

00-demo.md

File metadata and controls

148 lines (100 loc) · 2.99 KB

What is reveal.js?

"reveal.js is an open source HTML presentation framework. It enables anyone with a web browser to create beautiful presentations for free."


reveal.js Feature Set

  • Nested slides
  • Markdown support (that's the really cool stuff for us!)
  • Auto-Animate
  • PDF export
  • Speaker notes and preview
  • LaTeX typesetting
  • syntax highlighted code
  • ...

Reaveal.js
Basic Usage & Showcase

Shortcuts

  • Slide overview: Esc
  • Zoom:
    • Windows: Alt+Click
    • Linux: Ctrl+Click
  • Speaker view: S

Slide Transition

Horizontal Transition

  • Either create a new section in your index.html,
  • or seperate your slides in your markdown document by
    • adding a newline and
    • ----- (5x)
    • and a newline

Vertical Transition

  • seperate you slides in your markdown dokument by
    • adding a newline and
    • --- (3x)
    • and a newline

Fragments

  • Use Arrow keys to see step by step fragments.
  • HTML-comments are used for that: <!-- .element: class="fragment" -->
  • However, markdown file itself doesnt look that great.
  • Strange ordering is possible...

Speaker Notes

  • To add notes to your slides (not visible during presentation).
  • Add Note: and your text at the end of your slide.
  • Try it our here - press S and see the note below in Speaker view.

Note:

This text is not visible in presentation mode!


PINK BACKGROUND WITH ZOOM IN! WHOO!

  • For slide transitions (like zoom here) see reveal.js transition.
  • Different Backgrounds are possible
    • single colors (data-background)
    • gradients (shown here) (data-background-gradient)
    • gifs, videos
    • See reveal.js background
  • For the important pink color codes see this link.

Markdown Showcase

  • Code Higlighting
  • Classic markdown stuff, like
    • lists
    • tables
    • links and images
    • bold italic striketrough
  • See for example Markdown CheatSheet
  • ...and some examples below

Code

with highlighting

public class foo {
    private int baa;
    public foo() {
    baa = 0;
    }
}

Lists

Unordered

  • one
  • two
    • sub
  • three

Ordered

  1. one
  2. two
    1. sub
  3. three

Math Example

$$ J(\theta_0,\theta_1) = \sum_{i=0}^{10} a_i $$


Image Examples

Link

Github

Local

LiTec-Logo