From mboxrd@z Thu Jan 1 00:00:00 1970 From: lists@wilkesley.net Subject: Exporting to LaTeX Ignores Title Option in #+Options:. Date: Sat, 18 Jun 2016 07:55:28 +0100 Message-ID: <648f05c25ef70b77cbf1770d6ff38bb3@wilkesley.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36349) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEAAW-0005pQ-5g for emacs-orgmode@gnu.org; Sat, 18 Jun 2016 02:55:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bEAAQ-0001qo-Ry for emacs-orgmode@gnu.org; Sat, 18 Jun 2016 02:55:45 -0400 Received: from mail2.wilkesley.net ([176.58.110.121]:49552 helo=li40-130.members.linode.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEAAQ-0001og-Lb for emacs-orgmode@gnu.org; Sat, 18 Jun 2016 02:55:42 -0400 Received: from wilkesley.org (localhost [127.0.0.1]) (Authenticated sender: lists@wilkesley.net) by li40-130.members.linode.com (Postfix) with ESMTPA id E95D0DC64E for ; Sat, 18 Jun 2016 06:55:28 +0000 (UTC) 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 I have a bunch of org-files that I want to export. They all have a #+TITLE: but I don't want the Title to appear in the exported code. If I export the following minimal file: #+TITLE: My Title. #+AUTHOR: Ian Barton. #+STARTUP: content indent #+DATE: [2016-06-18 Sat 07:43] #+OPTIONS: title:nil I get the following output: \author{Ian Barton.} \date{\textit{[2016-06-18 Sat 07:43]}} \title{My Title.} I thought that setting title:nil in #+Options: suppressed export of the title. Is this expected behaviour with LaTeX? Ian.