From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Stewart Subject: Re: Ignoring all org-mode headings to export beamer slides with no titles Date: Sun, 3 Apr 2016 13:11:55 +0100 Message-ID: References: <87wpoeoreo.fsf@gmx.us> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amgt7-0005Id-0X for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 08:12:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1amgt6-0003k1-3Z for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 08:12:16 -0400 Received: from mail-lf0-x234.google.com ([2a00:1450:4010:c07::234]:36828) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1amgt5-0003ji-Rq for emacs-orgmode@gnu.org; Sun, 03 Apr 2016 08:12:16 -0400 Received: by mail-lf0-x234.google.com with SMTP id g184so57451447lfb.3 for ; Sun, 03 Apr 2016 05:12:15 -0700 (PDT) In-Reply-To: <87wpoeoreo.fsf@gmx.us> 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: Rasmus Cc: emacs-orgmode@gnu.org Hi Rasmus, Thanks for the tip. In the absence of an org mode solution to this, adding the following to the top of my org file is a solution: #+LATEX_HEADER: \setbeamertemplate{frametitle}{} -- Rob On 3 April 2016 at 12:36, Rasmus wrote: > 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? > >