From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Ecay Subject: Re: export for Beamer with author options Date: Thu, 21 Aug 2014 17:16:17 -0400 Message-ID: <87iollr1b2.fsf@gmail.com> References: <87tx554l35.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKZiX-0007UP-98 for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:16:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XKZiW-0005Vj-DK for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:16:21 -0400 Received: from mail-qg0-x22b.google.com ([2607:f8b0:400d:c04::22b]:53061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKZiW-0005VM-9i for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 17:16:20 -0400 Received: by mail-qg0-f43.google.com with SMTP id a108so9649964qge.30 for ; Thu, 21 Aug 2014 14:16:20 -0700 (PDT) In-Reply-To: <87tx554l35.fsf@gmail.com> 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: "Tory S. Anderson" , orgmode list Hi Tory, It looks like having a short and long author isn=E2=80=99t 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=E2=80=99t 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, --=20 Aaron Ecay