From mboxrd@z Thu Jan 1 00:00:00 1970 From: torys.anderson@gmail.com (Tory S. Anderson) Subject: Re: export for Beamer with author options Date: Thu, 21 Aug 2014 17:46:21 -0400 Message-ID: <87a96x4itu.fsf@gmail.com> References: <87tx554l35.fsf@gmail.com> <87iollr1b2.fsf@gmail.com> 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]:38243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKaC0-0007Dz-MK for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:46:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XKaBz-0005HN-R0 for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:46:48 -0400 Received: from mail-qc0-x233.google.com ([2607:f8b0:400d:c01::233]:64211) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKaBz-0005HJ-MH for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:46:47 -0400 Received: by mail-qc0-f179.google.com with SMTP id m20so10091728qcx.10 for ; Thu, 21 Aug 2014 14:46:47 -0700 (PDT) In-Reply-To: <87iollr1b2.fsf@gmail.com> (Aaron Ecay's message of "Thu, 21 Aug 2014 17:16:17 -0400") 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: Aaron Ecay Cc: orgmode list Hey Aaron, THat's a good idea but it doesn't quite work; looks like #+LATEX_HEADER stuff is put in BEFORE the author nil, so I just end up with \author{} to trump my author. I've tried rearranging things but it doesn't seem to effect it. - Tory Aaron Ecay writes: > Hi Tory, > > It looks like having a short and long author isn’t supported by the > beamer exporter out of the box. Your best bet is probably to add this > line to the top of your org file to turn off the automatic generation > and insertion of \author by the export template: > > #+OPTIONS: author:nil > > Then, you can cause the appropriate line to be inserted in the export > output with this line (also at the top of the file): > > #+LATEX_HEADER: \author[short-author]{Really \\long \\author} > > Whatever is on the latex header line will be inserted in the output > verbatim, so you don’t need to (e.g.) add extra escaping to special > characters like backslashes as you would if they were processed by org. > > Hope this is useful,