From 5acf4d4692a785e1dbaf962b9e6b1188a5ae572a Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Tue, 11 Feb 2020 12:28:02 +0100 Subject: [PATCH] ox-latex.el: Fix the display of checkbox items * lisp/ox-latex.el (org-latex-item): Fix the display of checkbox items. TINYCHANGE --- lisp/ox-latex.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index 626dbe399..46983bf43 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -2209,9 +2209,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