From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Lindner Subject: Some LaTeX Beamer / org-mode questions Date: Mon, 30 May 2016 10:38:06 +0200 Message-ID: <20160530103806.30cbddd9@asaru> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7IiM-0002gP-Eu for emacs-orgmode@gnu.org; Mon, 30 May 2016 04:38:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7IiH-0000xj-Fz for emacs-orgmode@gnu.org; Mon, 30 May 2016 04:38:21 -0400 Received: from plane.gmane.org ([80.91.229.3]:34406) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7IiH-0000wZ-8P for emacs-orgmode@gnu.org; Mon, 30 May 2016 04:38:17 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b7IiC-0007X1-3a for emacs-orgmode@gnu.org; Mon, 30 May 2016 10:38:12 +0200 Received: from lapsgs09.informatik.uni-stuttgart.de ([129.69.213.139]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 May 2016 10:38:12 +0200 Received: from mailinglists by lapsgs09.informatik.uni-stuttgart.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 May 2016 10:38:12 +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" To: emacs-orgmode@gnu.org Hello, I'm working on my first presentation using org mode together with latex beamer (until now, I produce the slide using beamer only). The top of my org file looks like that: #+startup: beamer #+LATEX_CLASS: beamer #+LATEX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: Boadilla #+LATEX_HEADER: \author[me]{\underline{me}, co1, co2} #+LATEX_HEADER: \title[short title]{multi line long title} #+LATEX_HEADER: \subtitle{subtitle} #+LATEX_HEADER: \institute[short institute]{multi line long institute} This works so far, except the title. Since I do not set a title using #+TITLE, org-mode sets a default \title{presentation}. How can I omit that? Is there a more elegant way to achieve the settings like above? Especially - The short and version of title, author and institute. - The multi line (\\) formatting - The subtitle Thanks! Florian