From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: new exporter: exporting subtree as beamer Date: Sun, 23 Sep 2012 21:45:07 +0200 Message-ID: <878vc0a5h8.fsf@med.uni-goettingen.de> References: <87d31ca6zr.fsf@med.uni-goettingen.de> <877grkbknc.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54137) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFs7M-0007tW-Br for emacs-orgmode@gnu.org; Sun, 23 Sep 2012 15:45:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TFs7L-0002Ty-84 for emacs-orgmode@gnu.org; Sun, 23 Sep 2012 15:45:28 -0400 Received: from plane.gmane.org ([80.91.229.3]:33215) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFs7L-0002Tk-0n for emacs-orgmode@gnu.org; Sun, 23 Sep 2012 15:45:27 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TFs7O-0007ez-4z for emacs-orgmode@gnu.org; Sun, 23 Sep 2012 21:45:30 +0200 Received: from vpn-2210.gwdg.de ([134.76.2.210]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Sep 2012 21:45:30 +0200 Received: from andreas.leha by vpn-2210.gwdg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Sep 2012 21:45:30 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Nicolas, > Hello, > > Andreas Leha writes: > >> I am having trouble to export a subtree as beamer document with the new >> exporter. (Org-mode version 7.9.1 (release_7.9.1-316-g66fe32) >> >> Here is a simple org-document, that was prepared for beamer export using >> org-e-beamer-insert-options-template: >> >> >> ----[ test_beamer.org ] >> * Test Beamer >> :PROPERTIES: >> :EXPORT_LaTeX_CLASS: beamer >> :EXPORT_LaTeX_CLASS_OPTIONS: [presentation] >> :EXPORT_FILE_NAME: presentation.pdf >> :COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt) >> :BEAMER_col_ALL: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC >> :END: >> >> ** First Slide :B_frame: >> :PROPERTIES: >> :BEAMER_env: frame >> :END: >> - first bullet >> ---- >> >> >> >> And this is what I get when I export the subtree "Test Beamer" as >> beamer: > > The code produced looks correct. What did you expect? > > > Regards, thanks for looking into this. Sorry for not being clear. I was expecting a compilable Beamer document. Especially, I am missing a document class in the exported TeX: ----[ TeX export ] % Created 2012-09-23 So 21:07 \usetheme{default} \author{Andreas Leha} \date{\today} \title{Test Beamer} \hypersetup{ pdfkeywords={}, pdfsubject={}, pdfcreator={Generated by Org mode 7.9.1 in Emacs 24.2.50.1.}} \begin{document} \maketitle \begin{frame}{Outline} \tableofcontents \end{frame} \begin{frame}[label=sec-1]{First Slide} \begin{itemize} \item first bullet \end{itemize} \end{frame} % Generated by Org mode 7.9.1 in Emacs 24.2.50.1. \end{document} ---- Best, Andreas