From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Removing the date in a subtree export using the new exporter Date: Thu, 08 Nov 2012 11:06:00 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWOzs-00022t-Ne for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 05:06:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWOzr-0007Nr-Ny for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 05:06:04 -0500 Received: from mail1-relais-roc.national.inria.fr ([192.134.164.82]:52564) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWOzr-0007NN-Ht for emacs-orgmode@gnu.org; Thu, 08 Nov 2012 05:06:03 -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 Hello, I'm using the new exporter to create a pdf (through latex) of a subtree of a huge file, and I want to remove some default information. I found out a way to do it, but I'm not sure it's the right way. Here it is. #+BEGIN_SRC org :PROPERTIES: :EXPORT_TITLE: Foo bar :EXPORT_OPTIONS: toc:nil author:nil :EXPORT_DATE: ~ :END: #+END_SRC The part about which I'm not sure is how to remove the date. I tried putting nothing instead of the '~' but it does not work. Maybe there could be an option for it? Alan