From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: A Header outline and an Argument outline in one? Date: Fri, 20 Nov 2009 02:10:49 +0100 Message-ID: <87my2ixap2.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NBI1K-0000YB-6j for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 20:10:42 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NBI1J-0000Xg-7I for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 20:10:41 -0500 Received: from [199.232.76.173] (port=51717 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBI1J-0000Xc-28 for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 20:10:41 -0500 Received: from ey-out-1920.google.com ([74.125.78.144]:34142) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NBI1I-0000wH-Ml for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 20:10:40 -0500 Received: by ey-out-1920.google.com with SMTP id 3so909395eyh.34 for ; Thu, 19 Nov 2009 17:10:39 -0800 (PST) In-Reply-To: (Scot Becker's message of "Wed, 18 Nov 2009 12:12:42 +0000") 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: Scot Becker Cc: Org-mode ml El mi=C3=A9, nov 18 2009 a les 13:12, Scot Becker va escriure: > (e) above is a bit of another matter, and I'm not sure how to > accomplish it in orgmode, which only has native capacity to supress > whole nodes, not just the headers,=20 This is very interesting. I assume you want to wrap some paragraphs insid= e a header but without exporting the header; just for the outline benefits. Normally you would do: ---------------------------- My thesis. * (just a little introduction) I will explain the achievements of this work. ** (first discovery: roses are red) It was discovered that roses are red. ---------------------------- But then the headers are exported. You should use inline tasks instead. Use (require 'org-inlinetask) and wr= ite: ---------------------------- My thesis. **************** (just a little introduction) I will explain the achievements of this work. ***************** (first discovery: roses are red) It was discovered that roses are red. ---------------------------- Ask org-mode not to export the tasks -- it exports the content instead: (setq org-inlinetask-export nil) And this exports to: --------------------------- My thesis. I will explain the achievements of this work. It was discovered that roses are red. --------------------------- I hope it helps. -- Daniel