From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Several questions about beamer export Date: Thu, 11 Jul 2013 23:21:22 -0400 Message-ID: <87vc4g4g5p.fsf@gmail.com> References: <87li5cwymc.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]:47996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxTvN-0006d1-OI for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 23:21:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxTvM-0005In-LF for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 23:21:37 -0400 Received: from plane.gmane.org ([80.91.229.3]:45340) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxTvM-0005IY-Ae for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 23:21:36 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UxTvK-0008UK-GW for emacs-orgmode@gnu.org; Fri, 12 Jul 2013 05:21:34 +0200 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 05:21:34 +0200 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 05:21:34 +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 Julien Cubizolles writes: > ... > * All the headers I add end up on the same line when I define them like > in the following (even with an empty line). > > #+LATEX_HEADER_EXTRA: \institute{My Institure} > > #+LATEX_HEADER:\usepackage{mypackage} > > The LaTeX file produced is not very readable. How can I produce > linebreaks between different LATEX_HEADER entriesĀ ? > You need to modify the code to get them: that's probably an omission (ngz will probably respond in much more detail than I can). They are only cosmetic of course, but if you have to have them, you can try adding them in org-beamer-template around line 880: (concat (plist-get info :latex-header) "\n" (plist-get info :latex-header-extra) "\n" (plist-get info :beamer-header-extra) "\n"))) The problem with this is that the newlines are added even if the various items are empty, so you may end up with more newlines than are necessary. -- Nick