Vicente <desdefu...@yahoo.com> writes:

> Is it possible to have additional notes --references, explanations,
> quotations, etc-- outside the frame in an org-mode presentation and
> keep them in exports? Actually I'm thinking more of a handout than a
> strict beamer export.  Graphically, I'd like to show the frames as
> "images" and the notes as text below them.

Beamer provides notes (see its user guide) and org supports that using
the BEAMER_ENV note environment. Something like this:

--8<---------------cut here---------------start------------->8---
#+TITLE: Quicksort in Clojure
#+AUTHOR: J David Smith
#+DATE: <2014-04-11 Fri>
#+OPTIONS: toc:nil num:nil
#+STARTUP: beamer
#+LATEX_HEADER: \setbeamersize{text margin left=10pt}
#+LATEX_HEADER: \setbeameroption{show notes}


* Clojure
  - Dialect of Lisp
  - Compiles into JVM Bytecode

** Note
:PROPERTIES:
:BEAMER_ENV: note
:END:

This is a note

...

--8<---------------cut here---------------end--------------->8---

See the beamer export section in the Org manual.

HTH,
Nick


Reply via email to