From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Updated syntax for #+bind and no LaTeX \maketitle command? Date: Fri, 24 May 2013 01:14:20 +0200 Message-ID: <87k3mpi90z.fsf@pank.iue.private> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43137) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfeiX-0005Yc-2T for emacs-orgmode@gnu.org; Thu, 23 May 2013 19:14:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UfeiW-0007OZ-4m for emacs-orgmode@gnu.org; Thu, 23 May 2013 19:14:40 -0400 Received: from plane.gmane.org ([80.91.229.3]:56833) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfeiV-0007OO-U9 for emacs-orgmode@gnu.org; Thu, 23 May 2013 19:14:40 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UfeiT-0001aG-Ub for emacs-orgmode@gnu.org; Fri, 24 May 2013 01:14:37 +0200 Received: from dynamic-adsl-94-39-217-165.clienti.tiscali.it ([94.39.217.165]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 May 2013 01:14:37 +0200 Received: from rasmus by dynamic-adsl-94-39-217-165.clienti.tiscali.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 May 2013 01:14:37 +0200 In-Reply-To: (John Hendy's message of "Thu, 23 May 2013 17:48:59 -0500") 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: emacs-orgmode@gnu.org John Hendy writes: > I sometimes don't want a title in my LaTeX exported documents and used to use: > > #+bind: org-export-latex-title-command "" > > in my documents. I see that the new variable is simply > =org-latex-title-command= and now have: > > #+bind: org-latex-title-command "" > > This is still generating a \maketitle line in my .tex file. Does either of solutions work in your case? #+BEGIN_SRC org #+TITLE: * My document without title . . . By setting TITLE to nil #+END_SRC #+BEGIN_SRC org #+TITLE: my-title #+BEGIN_SRC emacs-lisp :exports none (set (make-local-variable 'org-latex-title-command) "") #+END_SRC * My document without title . . . By changing the command with babel #+END_SRC #+BEGIN_SRC org #+TITLE: with title #+BEGIN_SRC emacs-lisp :exports results (set (make-local-variable 'org-export-allow-bind-keywords) t) #+END_SRC #+BIND: org-latex-title-command "" * without title using and allowing bind. #+END_SRC -- I almost cut my hair, it happened just the other day