From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Different kinds of enumerate in the same latex export Date: Tue, 05 Sep 2017 11:41:00 +0200 Message-ID: <8737811o0j.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53718) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpAMY-0000t8-Rm for emacs-orgmode@gnu.org; Tue, 05 Sep 2017 05:41:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpAMU-0000MD-9k for emacs-orgmode@gnu.org; Tue, 05 Sep 2017 05:41:42 -0400 Received: from [195.159.176.226] (port=48569 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpAMU-0000Im-2R for emacs-orgmode@gnu.org; Tue, 05 Sep 2017 05:41:38 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1dpAM5-0006Xr-UD for emacs-orgmode@gnu.org; Tue, 05 Sep 2017 11:41:13 +0200 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 I have to use two different enumerate items in the same document, one numbered (the default enumerate) and the other one ordered alphabetically (which I will now call "plickers"). In my LaTeX class, I've defined the "plickers" environment --8<---------------cut here---------------start------------->8--- \RequirePackage{enumitem} \newlist{plickers}{enumerate}{2} \setlist[plickers]{label=\alph*.} --8<---------------cut here---------------end--------------->8--- But I don't know how to have org-mode use one or the other to export an ordered list. With: --8<---------------cut here---------------start------------->8--- (setq org-beamer-environments-extra '( ("Plickers" "P" "\\begin{plickers}%a%U" "\\end{plickers}"))) --8<---------------cut here---------------end--------------->8--- The following obviously creates a enumerate environment nested within a plickers one, not what's intended. --8<---------------cut here---------------start------------->8--- **** essai :B_Plickers: :PROPERTIES: :BEAMER_env: Plickers :END: 1. 1st item 2. 2nd item --8<---------------cut here---------------end--------------->8--- Does orgmode allow to pass some properties to a list that could be used to alter its formatĀ ? Julien.