From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: New exporter, beamer confusion Date: Tue, 5 Feb 2013 23:02:43 +1030 Message-ID: <874nhrlz4k.fsf@ucl.ac.uk> References: <20130204063905.GA23614@kuru.dyndns-at-home.com> <87wqun5037.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:42925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2hhv-0005er-K8 for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 07:33:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2hhq-0006u5-KX for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 07:33:03 -0500 Received: from va3ehsobe005.messaging.microsoft.com ([216.32.180.31]:57683 helo=va3outboundpool.messaging.microsoft.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2hhq-0006tt-FT for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 07:32:58 -0500 In-Reply-To: <87wqun5037.fsf@gmail.com> (Nicolas Goaziou's message of "Mon, 4 Feb 2013 20:51:40 +0100") 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: Nicolas Goaziou Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Nicolas Goaziou writes: [...] > Here's an excerpt from ox-beamer.el documentation: > > ;; - Headlines become frames when their level is equal to > ;; `org-beamer-frame-level' (or "H" value in the OPTIONS line). Nicolas, I have decided to bite the bullet and try to get all of my beamer files working with the new exporter. I have started simply with the presentation.org file that I had put on Worg for the tutorial on beamer for the old exporter. A truncated version of that file (very minimal and attached) fails completely to export. I get the following (truncated) error trace: ,---- | Debugger entered--Lisp error: (wrong-type-argument buffer-or-string-p t) | get-text-property(0 org-props t) | org-get-text-property-any(0 org-props t) | org-beamer-sectioning(1 t) | funcall(org-beamer-sectioning 1 t) | (if (and (symbolp (nth 2 class-sectionning)) (fboundp (nth 2 class-sectionning))) (funcall (nth 2 class-sectionning) level numberedp) (nth (1+ level) class-sectionning)) | ... | org-e-latex-headline((headline (:raw-value "Introduction" :begin 359 :end 444 ... `---- I have attached the simple test file. Where am I going wrong? If I change H:2 to H:1, it works although obviously the output is not what I want. Have I misunderstand something rather fundamental? Thanks, eric -- : Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D : in Emacs 24.3.50.1 and Org 7.9.3e-898-gcb1386 --=-=-= Content-Type: text/org Content-Disposition: attachment; filename="test.org" #+TITLE: Writing Beamer presentations in org-mode #+AUTHOR: Eric S Fraga #+EMAIL: e.fraga@ucl.ac.uk #+DATE: 2010-03-30 Tue #+startup: oddeven #+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [bigger] #+BEAMER_THEME: Madrid #+OPTIONS: H:2 # +COLUMNS: %20ITEM %13BEAMER_env(Env) %6BEAMER_envargs(Args) %4BEAMER_col(Col) %7BEAMER_extra(Extra) * Introduction ** Overview - org-mode template - beamer structure - beamer settings --=-=-=--