Re: [O] Different kinds of enumerate in the same latex export

2017-09-05 Thread Julien Cubizolles
Eric S Fraga writes: > On Tuesday, 5 Sep 2017 at 11:41, Julien Cubizolles wrote: >> Does orgmode allow to pass some properties to a list that could be used >> to alter its formatĀ ? > > Try maybe: > > #+attr_latex: :environment plickers > 1. first > 2. second > > Works for me

Re: [O] Different kinds of enumerate in the same latex export

2017-09-05 Thread Eric S Fraga
On Tuesday, 5 Sep 2017 at 11:41, Julien Cubizolles wrote: > Does orgmode allow to pass some properties to a list that could be used > to alter its formatĀ ? Try maybe: #+attr_latex: :environment plickers 1. first 2. second Works for me with the etaremune environment (reverse ordered numbering).

Re: [O] Different kinds of enumerate in the same latex export

2017-09-05 Thread Rasmus
Hi Julien, You could do it like this: #+latex_header: \usepackage{enumitem} #+latex_header: \newlist{plickers}{enumerate}{2} \setlist[plickers]{label=\alph*.} #+attr_latex: :environment plickers 1. A 2. B Hope it helps, Rasmus -- One thing that is clear: it's all down hill from here

[O] Different kinds of enumerate in the same latex export

2017-09-05 Thread Julien Cubizolles
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