From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Lindner Subject: Re: Some LaTeX Beamer / org-mode questions Date: Mon, 30 May 2016 13:33:35 +0200 Message-ID: <20160530133335.45ad8693@asaru> References: <20160530103806.30cbddd9@asaru> <87fuszuclj.fsf@gmx.us> 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]:42429) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7LS6-000668-FZ for emacs-orgmode@gnu.org; Mon, 30 May 2016 07:33:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7LS2-0001vL-Eb for emacs-orgmode@gnu.org; Mon, 30 May 2016 07:33:46 -0400 Received: from plane.gmane.org ([80.91.229.3]:43474) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7LS2-0001v8-7P for emacs-orgmode@gnu.org; Mon, 30 May 2016 07:33:42 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b7LS0-0003IV-Pa for emacs-orgmode@gnu.org; Mon, 30 May 2016 13:33:40 +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 13:33:40 +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 13:33:40 +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 On Mon, 30 May 2016 11:19:52 +0200 Rasmus wrote: > Hi, > > Florian Lindner writes: > > > 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? > > #+options: title:nil Sorry, can't make it work. > > > Is there a more elegant way to achieve the settings like above? > > Especially > > > > - The short and version of title, author and institute. > > Don't know. > > > - The multi line (\\) formatting > > \\ at eol is org syntax for forced line break. > > > - The subtitle > > #+subtitle: Neither that works for me #+startup: beamer #+LATEX_CLASS: beamer #+LATEX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: Boadilla #+LATEX_HEADER: \author[me]{me and the coauthors} #+LATEX_HEADER: \title[short title]{long title \\ next line} #+LATEX_HEADER: \institute[short institute]{long institute} #+subtitle: subtitle #+OPTIONS: H:2 toc:t num:t title:nil The subtitle is ignored and the resulting tex file still contains \title{presentation} Thanks, Florian