From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Re: Beamer title is (incorrectly?) outside of a frame Date: Sun, 22 Dec 2013 18:42:01 +0800 Message-ID: <3bf20787-19e4-49ff-bbb5-5c90bcc58a95@dewdrop-world.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58737) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VugUG-0007eo-CC for emacs-orgmode@gnu.org; Sun, 22 Dec 2013 05:42:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VugU7-0005h6-Tr for emacs-orgmode@gnu.org; Sun, 22 Dec 2013 05:42:20 -0500 Received: from mail-pd0-x22c.google.com ([2607:f8b0:400e:c02::22c]:62194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VugU7-0005h0-MH for emacs-orgmode@gnu.org; Sun, 22 Dec 2013 05:42:11 -0500 Received: by mail-pd0-f172.google.com with SMTP id g10so4182751pdj.31 for ; Sun, 22 Dec 2013 02:42:06 -0800 (PST) Received: from localhost ([120.196.59.89]) by mx.google.com with ESMTPSA id ko10sm14373078pbd.38.2013.12.22.02.42.05 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 22 Dec 2013 02:42:06 -0800 (PST) In-Reply-To: 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: orgmode On Sunday, December 22, 2013 6:38:02 PM HKT, James Harkins wrote: > Hi, > > Is there a reason why Beamer export does not place "\maketitle" in a=20 frame? > > The beamer user guide (I.3.4) specifies the following: > > \begin{frame} > \titlepage > \end{frame} > > But org-mode simply writes "\maketitle" outside of a frame. Oh, I think I see the issue... there's only one org-latex-title-command. ;; 10. Title command. (org-element-normalize-string (cond ((string=3D "" title) nil) =09 ((not (stringp org-latex-title-command)) nil) =09 ((string-match "\\(?:[^%]\\|^\\)%s" =09=09=09 org-latex-title-command) =09 (format org-latex-title-command title)) =09 (t org-latex-title-command))) An isolated \maketitle is ok for articles, but not for Beamer. So I suppose=20= it's incorrect to press the same variable into service for both. hjh