From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian Carlson Subject: Bug: LaTeX output of numbered TODO plain list items lose numbering. [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/27.0.50/lisp/org/)] Date: Fri, 8 Nov 2019 21:28:39 -0500 Message-ID: <33a3a1bd-1e50-dc54-4bb9-c593a0bc1af8@abutilize.com> Reply-To: hacker@abutilize.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:35897) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iTGUh-0000d9-V2 for emacs-orgmode@gnu.org; Fri, 08 Nov 2019 21:28:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iTGUf-0006OZ-RQ for emacs-orgmode@gnu.org; Fri, 08 Nov 2019 21:28:55 -0500 Received: from gateway34.websitewelcome.com ([192.185.150.107]:47313) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iTGUf-0006C8-KY for emacs-orgmode@gnu.org; Fri, 08 Nov 2019 21:28:53 -0500 Received: from cm13.websitewelcome.com (cm13.websitewelcome.com [100.42.49.6]) by gateway34.websitewelcome.com (Postfix) with ESMTP id 6FECD4070 for ; Fri, 8 Nov 2019 20:28:41 -0600 (CST) Received: from pool-71-174-53-215.phlapa.fios.verizon.net ([71.174.53.215]:40528 helo=[192.168.1.11]) by gator3208.hostgator.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.92) (envelope-from ) id 1iTGUS-002IDx-NV for emacs-orgmode@gnu.org; Fri, 08 Nov 2019 20:28:40 -0600 Content-Language: en-US List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list. ------------------------------------------------------------------------ So it seems that the numbering of numbered items in a plain list are not maintained when the numbered item is also a TODO plain list item. Here is how I produced the issue: $ emacs -Q I created a very simple org-mode file: --8<---------------cut here---------------start------------->8--- * Test file 1. [ ] item 2. item 2 3. item 3 --8<---------------cut here---------------end--------------->8--- I then used the export facilities to create a PDF: C-c C-e l o I expected to see a PDF that looked like: --8<---------------cut here---------------start------------->8--- Contents 1 Test File 1 Test File 1. [] item 2. item 2 3. item 3 --8<---------------cut here---------------end--------------->8--- Instead I see a pdf that has the following: --8<---------------cut here---------------start------------->8--- Contents 1 Test File 1 Test File [] item 1. item 2 2. item 3 --8<---------------cut here---------------end--------------->8--- Notice how the "1." was removed in the generated PDF from the first item and the numbering started from 1. on "item 2" This used to work, but I'm not exactly certain when it changed. It *appears* that the generated \item for enumeration is incorrect? The .tex file contains the following: \item[{$\square$}] item I /think/ that this should be: \item{$\square$} item Maybe the [ and ] are not being stripped and converted into the {$\square= $}, but are rather being left and ending up with [{$\square$}]. (The same thing happens with the \boxtimes for "completed" TODOs. If that is the case then I /think/ that this patch would fix it: diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index 832d9bf8..b9734443 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -2208,9 +2208,9 @@ contextual information." "\\item" (cond ((and checkbox tag) - (format "[{%s %s}] %s" checkbox tag tag-footnotes)) + (format "{%s %s} %s" checkbox tag tag-footnotes)) ((or checkbox tag) - (format "[{%s}] %s" (or checkbox tag) tag-footnotes)) + (format "{%s} %s" (or checkbox tag) tag-footnotes)) ;; Without a tag or a check-box, if CONTENTS starts with ;; an opening square bracket, add "\relax" to "\item", ;; unless the brackets comes from an initial export I haven't done any thorough testing, just looking where I thought the iss= ue might be. Thanks for all the great work on Org Mode, ;-b Emacs : GNU Emacs 27.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.= 18.9) of 2019-09-04 Package: Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/em= acs/27.0.50/lisp/org/) current state: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D (setq org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-after-todo-state-change-hook '(org-clock-out-if-current) org-metadown-hook '(org-babel-pop-to-session-maybe) org-clock-out-hook '(org-clock-remove-empty-clock-drawer) org-html-format-inlinetask-function 'org-html-format-inlinetask-default-= function org-odt-format-headline-function 'org-odt-format-headline-default-functi= on org-ascii-format-inlinetask-function 'org-ascii-format-inlinetask-defaul= t org-mode-hook '(#[0 "\300\301\302\303\304$\207" [add-hook change-major-mode-hook org-show-block-all append local] 5] #[0 "\300\301\302\303\304$\207" [add-hook change-major-mode-hook org-babel-show-result-all append local] 5] org-babel-result-hide-spec org-babel-hide-all-hashes) org-odt-format-drawer-function #[514 "\207" [] 3 "\n\n(fn NAME CONTENTS)= "] org-archive-hook '(org-attach-archive-delete-maybe) org-confirm-elisp-link-function 'yes-or-no-p org-agenda-before-write-hook '(org-agenda-add-entry-text) org-metaup-hook '(org-babel-load-in-session-maybe) org-bibtex-headline-format-function #[257 "\300=01\236A\207" [:title] 3 = "\n\n(fn ENTRY)"] org-latex-format-drawer-function #[514 "\207" [] 3 "\n\n(fn _ CONTENTS)"= ] org-babel-pre-tangle-hook '(save-buffer) org-tab-first-hook '(org-babel-hide-result-toggle-maybe org-babel-header-arg-expand) org-ascii-format-drawer-function #[771 "=01\207" [] 4 "\n\n(fn NAME CONT= ENTS WIDTH)"] org-occur-hook '(org-first-headline-recenter) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-speed-command-hook '(org-speed-command-activate org-babel-speed-command-activate) org-odt-format-inlinetask-function 'org-odt-format-inlinetask-default-fu= nction org-confirm-shell-link-function 'yes-or-no-p org-link-parameters '(("id" :follow org-id-open) ("rmail" :follow org-rmail-open :store org-rmail-store-link) ("mhe" :follow org-mhe-open :store org-mhe-store-link) ("irc" :follow org-irc-visit :store org-irc-store-link) ("info" :follow org-info-open :export org-info-export :store org-info-store-link) ("gnus" :follow org-gnus-open :store org-gnus-store-link) ("docview" :follow org-docview-open :export org-docview-export :store org-docview-store-link) ("bibtex" :follow org-bibtex-open :store org-bibtex-store-link) ("bbdb" :follow org-bbdb-open :export org-bbdb-export :complete org-bbdb-complete-link :store org-bbdb-store-link) ("w3m" :store org-w3m-store-link) ("file+sys") ("file+emacs") ("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path)))) ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path)))) ("https" :follow (lambda (path) (browse-url (concat "https:" path)))) ("mailto" :follow (lambda (path) (browse-url (concat "mailto:" path)))) ("news" :follow (lambda (path) (browse-url (concat "news:" path)))) ("shell" :follow org--open-shell-link)) org-latex-format-headline-function 'org-latex-format-headline-default-fu= nction org-latex-format-inlinetask-function 'org-latex-format-inlinetask-defaul= t-function org-html-format-drawer-function #[514 "\207" [] 3 "\n\n(fn NAME CONTENTS= )"] org-html-format-headline-function 'org-html-format-headline-default-func= tion )