From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: No title or date in LaTeX export Date: Thu, 29 Jul 2010 17:02:25 -0400 Message-ID: <14442.1280437345@alphaville.usa.hp.com> References: Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=38305 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OeaFQ-0008Q0-Ti for emacs-orgmode@gnu.org; Thu, 29 Jul 2010 17:02:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OeaFP-0006KI-K8 for emacs-orgmode@gnu.org; Thu, 29 Jul 2010 17:02:36 -0400 Received: from g1t0026.austin.hp.com ([15.216.28.33]:32648) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OeaFP-0006Jz-GU for emacs-orgmode@gnu.org; Thu, 29 Jul 2010 17:02:35 -0400 In-Reply-To: Message from Xin Shi of "Thu\, 29 Jul 2010 16\:31\:24 EDT." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xin Shi Cc: nicholas.dokos@hp.com, emacs-orgmode Xin Shi wrote: > Hello Experts, >=20 > When I export the org file to LaTeX, I want no title or date in the first= page. =C2=A0Namely, I want > these lines to be commented out: >=20 > %\title{XXXXXX} > %\date{XXXXX} > %\maketitle=C2=A0 >=20 > So far, I only found > #+OPTIONS: author:nil =C2=A0can make: >=20 > %\author{XXXX}=C2=A0 >=20 > I also tried : >=20 > # Local Variables: > # org-export-latex-title-command: " " > # End: >=20 > but still saw the \maketitle . >=20 > Any suggestions? >=20 Try #+BIND: org-export-latex-title-command "" at the top of your org file. This should eliminate the \maketitle invocation. \title, \date etc will still be defined but since only \maketitle uses them, they won't affect the output. I presume you'll also want to nuke the table of contents. If so, add #+OPTIONS: toc:nil at the top of the org file as well. HTH, Nick