From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Lindner Subject: Re: Some LaTeX Beamer / org-mode questions Date: Thu, 2 Jun 2016 10:37:05 +0200 Message-ID: <20160602103705.298b0726@asaru> References: <20160530103806.30cbddd9@asaru> <87fuszuclj.fsf@gmx.us> <20160530133335.45ad8693@asaru> <8737ozu5gv.fsf@gmx.us> <20160601104419.0a52f45e@asaru> <874m9dryrk.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]:42514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8O8E-0003Ve-2I for emacs-orgmode@gnu.org; Thu, 02 Jun 2016 04:37:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8O87-0005xU-Km for emacs-orgmode@gnu.org; Thu, 02 Jun 2016 04:37:34 -0400 Received: from plane.gmane.org ([80.91.229.3]:37478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8O87-0005ww-E0 for emacs-orgmode@gnu.org; Thu, 02 Jun 2016 04:37:27 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b8O83-0003kO-9E for emacs-orgmode@gnu.org; Thu, 02 Jun 2016 10:37:23 +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 ; Thu, 02 Jun 2016 10:37:23 +0200 Received: from mailinglists by lapsgs09.informatik.uni-stuttgart.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 02 Jun 2016 10:37:23 +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 Wed, 01 Jun 2016 12:26:07 +0200 Rasmus wrote: > Florian Lindner writes: > > > On Mon, 30 May 2016 13:53:52 +0200 > > Rasmus wrote: > > > >> Hi, > >> > >> Florian Lindner writes: > >> > >> >> #+options: title:nil > >> > > >> > Sorry, can't make it work. > >> >> #+subtitle: > >> > > >> > Neither that works for me > >> > >> Are you sure you are using an up-to-date version of Org? > >> M-x org-version should return 8.3.something. > > > > Ah, you were right. I used the builtin org version. > > > > It works now, however, when I set the title:nil is does not produce > > a title page at all. > > > > #+BEGIN_LATEX > > \maketitle > > #+END_LATEX > > Or: > > @@latex:\maketitle@@. > > What exactly are you missing from the standard title page support of > Org? Nothing really, but when I use title:t, org mode sets a \title{presentation} in the tex file which overwrites my own title. If I set title:nil, it sets \title{} still overwriting my own title. > > inserts a title page, but after the table of contents. > > > > Any way to work around that? > > Yes, the #+TOC keyword combined with the option toc:nil. Ah, ok, I think I got using these settings now: #+startup: beamer #+LATEX_CLASS: beamer #+LATEX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: Boadilla #+OPTIONS: H:2 num:t title:nil toc:nil #+BEGIN_LATEX \author[me]{me and the coauthors} \title[short title]{long title \\ next line} \subtitle{subtitle} \institute[short institute]{long institute} \maketitle #+END_LATEX As I said, all I want is to have a standard title page followed by a toc, but I need to set also the short version of title, institute and author. Well it works, albeit not very elegant. Best, Florian