From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: latex export: can I add an optional argument to an item? Date: Thu, 01 Dec 2016 11:36:50 -0800 Message-ID: <87shq74f1p.fsf@aquinas.i-did-not-set--mail-host-address--so-tickle-me> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cCX8J-0002NI-6i for emacs-orgmode@gnu.org; Thu, 01 Dec 2016 14:35:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cCX8G-0006uZ-2j for emacs-orgmode@gnu.org; Thu, 01 Dec 2016 14:35:03 -0500 Received: from mail-pg0-x22a.google.com ([2607:f8b0:400e:c05::22a]:34788) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cCX8F-0006ql-T5 for emacs-orgmode@gnu.org; Thu, 01 Dec 2016 14:35:00 -0500 Received: by mail-pg0-x22a.google.com with SMTP id x23so98189282pgx.1 for ; Thu, 01 Dec 2016 11:34:58 -0800 (PST) In-Reply-To: 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: Alan Schmitt , Org list Hi Alan, Alan Schmitt writes: > I would like to generate the following latex export: > > \begin{itemize} > \item[\Checkmark] foo > \end{itemize} It's not exactly pretty, but you can use a description list while resetting it to the itemize environment, like: #+ATTR_LATEX: :environment itemize - \Checkmark :: foo That produces: \begin{itemize} \item[{\Checkmark}] foo \end{itemize} At least, that works for me (I have not yet upgraded to Org 9.0; so I don't know if this will continue to work, though I don't know of any reason why it shouldn't). Hope that helps! Best, Richard