From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: Latex export bugs and a request Date: Sat, 21 Mar 2009 15:32:59 -0500 Message-ID: References: <87zlflcm6t.fsf@fastmail.fm> <4CCC1BE5-B46F-4A01-AB69-AB1A28F4FF86@uva.nl> <87bpryeqpm.fsf@fastmail.fm> <9A193714-0153-46CC-BF39-B8866130282C@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ll7sU-0004M9-LN for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 16:33:10 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ll7sN-0004Lt-8n for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 16:33:07 -0400 Received: from [199.232.76.173] (port=49867 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ll7sN-0004Lq-1O for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 16:33:03 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:49499) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ll7sM-0004Xy-Mz for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 16:33:02 -0400 In-Reply-To: <9A193714-0153-46CC-BF39-B8866130282C@uva.nl> (Carsten Dominik's message of "Sat\, 21 Mar 2009 18\:21\:29 +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, Carsten Dominik writes: > I have worked on this part of the LaTeX exporter. Among other things, > I now export these headers as an itemize list by default, parallel to > the HTML exporter. > > You can customize org-export-latex-low-levels to specify what exactly > you want, you can get description or enumerate lists as well. > > Let me know if the problems now go away. Thanks ever so much. This is a very nice addition. I saw a small issue in defcustom for org-export-latex-low-levels (see below). Best, Matt --8<---------------cut here---------------start------------->8--- diff --git a/lisp/org-export-latex.el b/lisp/org-export-latex.el index a09aff6..f852084 100644 --- a/lisp/org-export-latex.el +++ b/lisp/org-export-latex.el @@ -227,8 +227,8 @@ the %s stands here for the inserted headline and is mandatory." :group 'org-export-latex :type '(choice (const :tag "Ignore" nil) (symbol :tag "Convert as descriptive list" description) - (symbol :tag "Convert as descriptive list" itemize) - (symbol :tag "Convert as descriptive list" enumerate) + (symbol :tag "Convert as itemized list" itemize) + (symbol :tag "Convert as enumerated list" enumerate) (string :tag "Use a section string" :value "\\subparagraph{%s}"))) (defcustom org-export-latex-list-parameters --8<---------------cut here---------------end--------------->8---