From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Moe Subject: [BUG] Latex export fails to include drawers Date: Wed, 03 Nov 2010 21:01:18 +0100 Message-ID: <4CD1BF8E.5090304@christianmoe.com> Reply-To: mail@christianmoe.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=57695 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PDjUu-0007yU-UF for emacs-orgmode@gnu.org; Wed, 03 Nov 2010 15:59:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PDjUt-0005pR-MM for emacs-orgmode@gnu.org; Wed, 03 Nov 2010 15:59:52 -0400 Received: from mars.hitrost.net ([91.185.193.39]:37918) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PDjUt-0005jp-Gq for emacs-orgmode@gnu.org; Wed, 03 Nov 2010 15:59:51 -0400 Received: from lk.92.63.17.213.dc.cable.static.lj-kabel.net ([92.63.17.213] helo=Celebrian.local) by mars.hitrost.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1PDjUP-0001uW-1N for emacs-orgmode@gnu.org; Wed, 03 Nov 2010 20:59:21 +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: Org Mode The Latex exporter seems to fail to include drawers when asked to. The HTML exporter, however, includes them as expected (as verbatim example). I've looked at org-exp.el to try to understand why, but I don't. I'm using 7.02trans on GNU Emacs 23.2.1. Minimal example: --------------------------- #+TITLE: Drawers #+DRAWERS: NOTES #+OPTIONS: d:t A drawer should follow. :NOTES: This is a note in a drawer. :END: --------------------------- What I expect to see (skipping title etc.) ------------------------------ A drawer should follow. \begin{verbatim} NOTES This is a note in a drawer. \end{verbatim} \end{document} ------------------------------ What I get: ------------------------------ A drawer should follow. \end{document} ------------------------------