From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: Latex export bugs and a request Date: Thu, 19 Mar 2009 21:43:31 -0500 Message-ID: References: <87zlflcm6t.fsf@fastmail.fm> <4CCC1BE5-B46F-4A01-AB69-AB1A28F4FF86@uva.nl> <87bpryeqpm.fsf@fastmail.fm> 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 1LkUi0-000159-IS for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 22:43:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LkUhv-00014H-M0 for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 22:43:43 -0400 Received: from [199.232.76.173] (port=56694 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LkUhv-00014E-GH for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 22:43:39 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:50304) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LkUhv-0001Y1-5Q for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 22:43:39 -0400 In-Reply-To: (Carsten Dominik's message of "Thu\, 19 Mar 2009 11\:04\:57 +0100") 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: Carsten Dominik Cc: Org-mode ml Hi Carsten, >>>> 2. Headlines greater than n when H:n (e.g., level three headlines >>>> when H >>>> is set to 2) are exported as description lists. >>>> >>>> Is this the intended behavior? >>> >>> This is how Bastien designed it, and it is similar to the HTML way, >>> turning these into lists. It works fine if there is any text before >>> the plain list bullets. >>> >> >> When I use a paragraph of text instead of plain list bullets, the >> subsequent paragraph becomes the definition of the headline, which >> becomes the list label. Is this correct? > > I am confused, could you make a detailed example, please? Sorry for being unclear. Take, for instance, the following source file: --8<---------------cut here---------------start------------->8--- #+OPTIONS: H:2 * This is the first heading Here is some text after the first heading. ** This is the second heading Here is some text after the second heading. *** This is the third heading Here is some text after the third heading. --8<---------------cut here---------------end--------------->8--- This outputs to tex as follows (preamble excluded): --8<---------------cut here---------------start------------->8--- \section{This is the first heading} \label{sec-1} Here is some text after the first heading. \subsection{This is the second heading} \label{sec-1.1} Here is some text after the second heading. \begin{description} \item[This is the third heading]\label{sec-1.1.1} Here is some text after the third heading. \end{description} --8<---------------cut here---------------end--------------->8--- When latex is run, the output looks like this. Note how the text after the third heading is folded into the same line: --8<---------------cut here---------------start------------->8--- 1 This is the =EF=AC=81rst heading=20 Here is some text after the =EF=AC=81rst heading.=20 1.1 This is the second heading=20 Here is some text after the second heading.=20 This is the third heading Here is some text after the third heading.=20 --8<---------------cut here---------------end--------------->8--- - Matt