Support via Liberapay

Slides with Org-Mode and JavaScript

Welcome to Org-mode and Slides

  • Navigate back and and forth on doubleclick and click.
  • Use all the navigation and text facilities of org-info.js in your presentations.
  • Remove warnings on click.
  • No warnings when navigating with the mouse.
  • Simple lists are shown item by item automatically.

Overview

  • Create the Org-mode file
  • Export the Org-mode file to XHTML
  • Create a stylesheet for slides

Create the Org-mode file

Structure for slides

* Overview

  + Create the Org-mode file

* Overview

  + Create the Org-mode file
  + Export the Org-mode file to XHTML

Export the Org-mode file to XHTML

view:slide

#+INFOJS_OPT: toc:nil ltoc:nil view:slide mouse:underline


* COMMENT html style specifications
# Local Variables:
# org-export-html-style: "<link rel=\"stylesheet\" \
#                type=\"text/css\" href=\"slides.css\" />"
# End:

Create a stylesheet for slides

  • Stylesheets for slides are different.
  • The body uses the whole width.
  • Use the same style for all headlines.
  • The postamble will be hidden automatically.
  • Position org-info.js's window.

CSS - body

Choose a big font!

body
{
  width:100%;
  padding:0px 0px 0px 0px;
  margin:0px 0px 0px 0px;
  background-image:url(img/bg.gif);
  background-attachment:fixed;
  background-repeat:repeat-x;
  /* ... etc. */
}

CSS - headlines

Set all headlines to the same size:

h1,h2,h3,h4,h5,h6
{
  font-size: 18pt;
  font-weight:bold;
  color:#104d8c;
  /* ... etc. */
}

CSS - org-info-js

Position the org-info.js window.

#org-info-js-window
{
  position:absolute;
  top:140px;
  left:20%;
}

TODOS

DONE

That's all folks.

Documentation from the orgmode.org/worg/ website (either in its HTML format or in its Org format) is licensed under the GNU Free Documentation License version 1.3 or later. The code examples and css stylesheets are licensed under the GNU General Public License v3 or later.