From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Property EXPORT_OPTIONS ignored? Date: Wed, 19 Mar 2014 17:56:55 +0100 Message-ID: <877g7qqg88.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36832) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQJng-0007wd-CU for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 12:57:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQJnb-00032P-I7 for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 12:57:08 -0400 Received: from rs249.mailgun.us ([209.61.151.249]:52357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQJnb-00032C-Cy for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 12:57:03 -0400 In-Reply-To: (Robert Eckl's message of "Wed, 19 Mar 2014 17:35:15 +0100") 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: Robert Eckl Cc: emacs-orgmode@gnu.org Hi Robert, Robert Eckl writes: > i'm trying to exclude one section from the toc > > Following http://orgmode.org/manual/Export-settings.html in following > example section 2 shoud not appear in the toc, but it appears. > > #+OPTIONS: toc:t > * Section 1 > * Section 2 > :PROPERTIES: > :EXPORT_OPTIONS: toc:nil > :END: > > What I'm missing? Subtree options set through EXPORT_OPTIONS apply to the subtree export, available through C-c C-e C-s, not to the subtree itself during normal (unrestricted) export. Maybe you can use inline tasks? Or limit the scope of the TOC like this: #+OPTIONS: toc:1 if the headlines you want to ignore are not top-level headlines. HTH, -- Bastien