From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Re: Selective Export Question Date: Thu, 24 Dec 2009 10:43:43 -0800 Message-ID: <4B33B65F.3080200@comcast.net> References: <4B30662A.4010302@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NNsfF-0002ZY-VY for emacs-orgmode@gnu.org; Thu, 24 Dec 2009 13:43:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NNsfE-0002XL-UD for emacs-orgmode@gnu.org; Thu, 24 Dec 2009 13:43:57 -0500 Received: from [199.232.76.173] (port=50844 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NNsfE-0002XB-Ol for emacs-orgmode@gnu.org; Thu, 24 Dec 2009 13:43:56 -0500 Received: from qmta13.emeryville.ca.mail.comcast.net ([76.96.27.243]:37515) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NNsfE-0004Ay-E0 for emacs-orgmode@gnu.org; Thu, 24 Dec 2009 13:43:56 -0500 In-Reply-To: <4B30662A.4010302@comcast.net> 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: org-mode emacs-orgmode So, no Christmas present for me? :) Merry Christmas everyone. Thanks for all the hard work and the help over the last year. Congratulations for working together to produce such a fantastic tool. Mark Mark Elston wrote: > I have been making progress on my use of org-mode to manage both > my teaching notes and handouts in a single document. However, there > is something I still have not been able to make happen. That is > selective exporting of text *without* exporting a headline along with > it. > > Here is a sample of what I would like. In this example I have sections > with "common" text (should be in both teaching notes and handouts) and > sections that are specific to each individual output format. What I > have below is set up to export the notes. What I would like is to > have the text (only) of the non-excluded sections and not the headlines. > > -------------------------------------------------------------- > #+TITLE: Test > #+LaTeX_CLASS: ClassNotes > > #+OPTIONS: toc:nil H:8 tags:nil > > #+EXPORT_EXCLUDE_TAGS: handouts > > * Headline 1 > some text > > ** Headline 1-1 > even more text > > * Headline 2 > some more text > > ** Headline 2-1 > Common text 1. Should be followed by handout or notes text. > > ***** should be handouts only :handouts: > handout text > > ***** should be notes only :notes: > notes text > > ** Headline 2-2 > Common text 2. Should be followed by handout or notes text. > > ***** :handouts: > handout text again > > ***** :notes: > notes text again > -------------------------------------------------------------- > > > The relevant material from my org-export-latex-classes is: > > ("ClassNotes" "\\documentclass[letter,twoside,openright]{memoir} > ... > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("%% Level 5" . "%% Level 5") > ("%% Level 6" . "%% Level 6") > ("%% Level 7" . "%% Level 7") > ("%% Level 8" . "%% Level 8")) > ... > > > I was hoping to allow all levels of heading to be exported but only > write comments for the levels below level 4. It didn't work out that > way. > > With the above I don't get *any* of the :notes: or :handouts: > sections written out. However, if I include empty level three and four > headlines (the stars followed by a mandatory space) I get the :notes: > and :handouts: sections just fine. Except now I also get empty > \subsection{} and \subsubsection{} blocks in my latex output. I have > attached the resulting .tex file with comments pointing out the > extra heading lines I would like to *not* see... > > The net result is a lot of blank space in the resulting .pdf file > between the 'common' text and the note- or handout-specific text. This > is *definitely* not what I had in mind. > > Is there any way of working around this or correcting this behavior? > > Mark > > > ------------------------------------------------------------------------ > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode