From mboxrd@z Thu Jan 1 00:00:00 1970 From: Baoqiu Cui Subject: Re: bug in exporting checkbox lists Date: Fri, 20 Mar 2009 22:28:36 -0700 Message-ID: References: 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 1Lktlb-0005C8-H9 for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 01:29:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LktlV-0005Bw-Uw for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 01:29:06 -0400 Received: from [199.232.76.173] (port=41655 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LktlV-0005Bt-Nt for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 01:29:01 -0400 Received: from main.gmane.org ([80.91.229.2]:50594 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LktlV-0005L1-Bb for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 01:29:01 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LktlR-0008Rp-Hl for emacs-orgmode@gnu.org; Sat, 21 Mar 2009 05:28:57 +0000 Received: from nat-dip6.cfw-a-gci.corp.yahoo.com ([209.131.62.115]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 21 Mar 2009 05:28:57 +0000 Received: from cbaoqiu by nat-dip6.cfw-a-gci.corp.yahoo.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 21 Mar 2009 05:28:57 +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: emacs-orgmode@gnu.org Rainer Thiel writes: > I want to report what I think is a bug in the routines for exporting > checkbox lists into LaTeX-related formats (including pdf). > > While checkboxes checked in orgmode appear as checked in html and > ascii exports, all boxes are blank (unchecked) in LaTeX and related > export files. I am appending some files to document the bug. > > I seem to remember this feature worked fine some time ago, so I think > that might be a relatively new bug. I believe this is caused by a typo in the following line in org-export-latex.el: (defcustom org-export-latex-list-parameters '(:cbon "\\texttt{[ ]}" :cboff "\\texttt{[ ]}") --- | `-> This should be [X] You can set this variable to override this default value, which could be set this way to intentionally uncheck everything in the exported LaTeX file. Baoqiu