Hi, I think I found a bug in the beamer export of org-e-beamer. The ecm and the produced TeX file is attached. During the export the documentclass is incorrectly set to article. This is how I load org-export: (setq debug-on-error t debug-on-signal nil debug-on-quit nil) (add-to-list 'load-path (expand-file-name "~/build/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "~/build/org-mode/contrib/lisp")) ;; activate org (require 'org-install) (load-library "org-export") (load-library "org-e-latex") (load-library "org-e-beamer") (load-library "org-e-html") (setq org-export-dispatch-use-expert-ui t ; non-intrusive export dispatch 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\}"))) -- Suvayu Open source is the future. It sets us free.