Hi Nicolas and others,
The option for beamer export seems to have gone missing from the
org-export-dispatch ui. This is how I setup org-e-beamer export in a
minimal emacs instance.
;; load org-export and its backends
(load-library "org-export")
(load-library "org-e-latex")
(load-library "org-e-beamer")
(setq org-e-latex-pdf-process ; for experimental org-export
'("xelatex -interaction nonstopmode -output-directory %o %f"
"xelatex -interaction nonstopmode -output-directory %o %f"
"xelatex -interaction nonstopmode -output-directory %o %f"))
;; beamer export with the new exporter
(add-to-list 'org-e-latex-classes
'("beamer"
"\\documentclass\[presentation\]\{beamer\}"
("\\section\{%s\}" . "\\section*\{%s\}")
("\\subsection\{%s\}" . "\\subsection*\{%s\}")
("\\subsubsection\{%s\}" . "\\subsubsection*\{%s\}")))
Hope this helps.
--
Suvayu
Open source is the future. It sets us free.