From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Export to LaTeX and Beamer Date: Thu, 11 Jul 2013 23:41:45 +0200 Message-ID: <87ppuowz8m.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41307) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxOz5-0006Zx-9g for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 18:05:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxOz4-0002lh-BY for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 18:05:07 -0400 Received: from plane.gmane.org ([80.91.229.3]:47873) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxOz4-0002ke-4u for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 18:05:06 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UxOz2-0000Uo-0P for emacs-orgmode@gnu.org; Fri, 12 Jul 2013 00:05:04 +0200 Received: from 37.160.22.27 ([37.160.22.27]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 00:05:04 +0200 Received: from j.cubizolles by 37.160.22.27 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 00:05:04 +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 I need to export different parts of an org file with different LaTeX classes, one of which is a beamer style. I've come up with the following solution: manually switching the LATEX_CLASS for each export, and using SELECT_TAGS to choose which headings to export. For the following file * First section ** First subsection *** This is for beamer :beamer: Some text *** This is for plain LaTeX :latex: Some other text *** This is for both :beamer:latex: Changing the preamble from: #+LATEX_CLASS: beamer #+SELECT_TAGS: beamer to: #+LATEX_CLASS: latex #+SELECT_TAGS: latex does the trick but what if I don't want to export the title of the heading but just the text ? I can use the noheading BEAMER_ENV for beamer export but I couldn't find a corresponding option for plain LaTeX. How would you go about doing it ? Julien.