From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Problem with PROPERTIES :OPTIONS: when exporting subtree Date: Sun, 26 Sep 2010 20:03:25 -0400 Message-ID: <87bp7kaw8i.fsf@fastmail.fm> References: 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=38518 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P01Bq-0001rh-Ee for emacs-orgmode@gnu.org; Sun, 26 Sep 2010 20:03:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P01Bp-0000DV-6z for emacs-orgmode@gnu.org; Sun, 26 Sep 2010 20:03:30 -0400 Received: from out5.smtp.messagingengine.com ([66.111.4.29]:49220) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P01Bp-0000DO-3r for emacs-orgmode@gnu.org; Sun, 26 Sep 2010 20:03:29 -0400 In-Reply-To: (Rainer M. Krug's message of "Sat, 25 Sep 2010 12:32:15 +0200") 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: Rainer M Krug Cc: emacs-orgmode Rainer M Krug writes: > Hi > > I hava a problem with exporting to LaTeX. > > I want to export a table to latex. I put it into a subtree, containing > only the table, i.e. no headers, as I want to include it into another > document. I thought, that using the :OPTIONS: property, I can disable > the headers - but it does not seem to be working - am I missing > something? I believe the relevant property is :EXPORT_OPTIONS:. ,----[ (info "(org) Export options") ] | When exporting only a single subtree by selecting it with `C-c @' | before calling an export command, the subtree can overrule some of the | file's export settings with properties `EXPORT_FILE_NAME', | `EXPORT_TITLE', `EXPORT_TEXT', `EXPORT_AUTHOR', `EXPORT_DATE', and | `EXPORT_OPTIONS'. `---- > ################################### > * Table of Parameter > > The parameters are as follow: > ** The Table > :PROPERTIES: > :EXPORT_FILE_NAME: table > :OPTIONS: H:0 num:f toc:f author:f timestamp:f creator:f > :END: > | A | B | =C2=A0C | > |---+---+----| > | 1 | 2 | 33 | > | =C2=A0 | =C2=A0 | =C2=A0 =C2=A0| > ################################### > Is it correct that you are trying to disable author, table-of-contents, etc.? If so, I believe these can be turned off with the nil option: --8<---------------cut here---------------start------------->8--- * Table of Parameter The parameters are as follow: ** The Table :PROPERTIES: :EXPORT_FILE_NAME: table :EXPORT_OPTIONS: H:0 num:nil toc:nil author:nil timestamp:nil creator:nil :END: | A | B | =C2=A0C | |---+---+----| | 1 | 2 | 33 | | =C2=A0 | =C2=A0 | =C2=A0 =C2=A0| --8<---------------cut here---------------end--------------->8---- Have you considered radio tables? It's a nice solution for including an org-mode table in a LaTeX document. Best, Matt