From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Ignoring all org-mode headings to export beamer slides with no titles Date: Sun, 03 Apr 2016 13:36:31 +0200 Message-ID: <87wpoeoreo.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35932) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amgKk-0005Pn-Fq for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 07:36:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1amgKg-00055s-GO for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 07:36:46 -0400 Received: from plane.gmane.org ([80.91.229.3]:53775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amgKg-000544-9p for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 07:36:42 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1amgKd-0000yk-36 for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 13:36:39 +0200 Received: from ip-37-201-7-224.hsi13.unitymediagroup.de ([37.201.7.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 03 Apr 2016 13:36:39 +0200 Received: from rasmus by ip-37-201-7-224.hsi13.unitymediagroup.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 03 Apr 2016 13:36:39 +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 Rob Stewart writes: > Hi, > > I like presentation zen, where less is more. I would like to export my > org-mode files as beamer slides, but have the heading title ignored so > as not to position a title at the top left of the each slide. > > I can do it on a per-slide basis with: > > ** My slide title > :PROPERTIES: > :BEAMER_ENV: fullframe > :END: > > Is there a way of applying this rule to every slide, without having to > add this :PROPERTIES: section beneath every heading in my org file? You could add a filter that adds this property to every headline of the correct level. Or hack it on the latex side #+latex_header: \let\oldframe\frame #+latex_header: \renewcommand\frame[1][fullframe]{\oldframe[#1]} Hope it helps, Rasmus -- When the facts change, I change my mind. What do you do, sir?