emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* lists with a , b, c, or i, ii, iii ...
@ 2014-07-11 13:07 Joseph Vidal-Rosset
  2014-07-11 13:35 ` Nick Dokos
  0 siblings, 1 reply; 5+ messages in thread
From: Joseph Vidal-Rosset @ 2014-07-11 13:07 UTC (permalink / raw)
  To: Liste-emacs-orgmode@gnu.org

[-- Attachment #1: Type: text/plain, Size: 268 bytes --]

Hello everybody,

I'm trying to get  orderd lists in org-mode with other values than 1. 2. ...

I do not succeed to get lists like:

i.  blablabla ...
ii. blablabla
iii. blabla..

or

a.  "sentence"
b.  another sentence..

Could you help me please?

Best wishes,

Jo.

[-- Attachment #2: Type: text/html, Size: 483 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: lists with a , b, c, or i, ii, iii ...
  2014-07-11 13:07 lists with a , b, c, or i, ii, iii Joseph Vidal-Rosset
@ 2014-07-11 13:35 ` Nick Dokos
  2014-07-11 14:17   ` Nick Dokos
  0 siblings, 1 reply; 5+ messages in thread
From: Nick Dokos @ 2014-07-11 13:35 UTC (permalink / raw)
  To: emacs-orgmode

Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com> writes:


> I'm trying to get  orderd lists in org-mode with other values than
> 1. 2. ...
>
> I do not succeed to get lists like:
>
> i.  blablabla ...
> ii. blablabla
> iii. blabla..
>

Not possible in org AFAIK. It might be possible
to get them in the exported PDF file by
playing LaTeX games, but I'm not sure.

> or
>
> a.  "sentence"
> b.  another sentence..
>
> Could you help me please?
>

C-h v org-alphabetical-lists RET

-- 
Nick

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: lists with a , b, c, or i, ii, iii ...
  2014-07-11 13:35 ` Nick Dokos
@ 2014-07-11 14:17   ` Nick Dokos
  2014-07-11 14:23     ` Joseph Vidal-Rosset
  0 siblings, 1 reply; 5+ messages in thread
From: Nick Dokos @ 2014-07-11 14:17 UTC (permalink / raw)
  To: emacs-orgmode

Nick Dokos <ndokos@gmail.com> writes:

> Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com> writes:
>
>
>> I'm trying to get  orderd lists in org-mode with other values than
>> 1. 2. ...
>>
>> I do not succeed to get lists like:
>>
>> i.  blablabla ...
>> ii. blablabla
>> iii. blabla..
>>
>
> Not possible in org AFAIK. It might be possible
> to get them in the exported PDF file by
> playing LaTeX games, but I'm not sure.
>
>> or
>>
>> a.  "sentence"
>> b.  another sentence..
>>
>> Could you help me please?
>>
>
> C-h v org-alphabetical-lists RET

Sorry, that variable is obsolete (although it should still work for
now).  I should have pointed you to the modern version instead:

org-list-allow-alphabetical


Note the caveat in the doc:

,----
| This variable needs to be set before org.el is loaded.  If you
| need to make a change while Emacs is running, use the customize
| interface or run the following code after updating it:
| 
|   (when (featurep 'org-element) (load "org-element" t t))
`----

I tried it and it works:

  a. foo - press M-RET
  b. bar

-- 
Nick

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: lists with a , b, c, or i, ii, iii ...
  2014-07-11 14:17   ` Nick Dokos
@ 2014-07-11 14:23     ` Joseph Vidal-Rosset
  2014-07-11 16:03       ` Nick Dokos
  0 siblings, 1 reply; 5+ messages in thread
From: Joseph Vidal-Rosset @ 2014-07-11 14:23 UTC (permalink / raw)
  To: Nick Dokos; +Cc: Liste-emacs-orgmode@gnu.org

[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]

2014-07-11 16:17 GMT+02:00 Nick Dokos <ndokos@gmail.com>:

> orry, that variable is obsolete (although it should still work for
> now).  I should have pointed you to the modern version instead:
>
> org-list-allow-alphabetical
>
>
> Note the caveat in the doc:
>
> ,----
> | This variable needs to be set before org.el is loaded.  If you
> | need to make a change while Emacs is running, use the customize
> | interface or run the following code after updating it:
> |
> |   (when (featurep 'org-element) (load "org-element" t t))
> `----
>
> I tried it and it works:
>
>   a. foo - press M-RET
>   b. bar
>


Do not apologize, I have noticed that the variable was obsolete and I have
tried to customize the new variable. I have even written the code
(when (featurep 'org-element) (load "org-element" t t))  in my init.el
(which is too big and really a mess), and it doe not work either...

Do not waste more time than me on this small problem which certainly comes
from my init.el...

Best regards,

Jo.

[-- Attachment #2: Type: text/html, Size: 1740 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: lists with a , b, c, or i, ii, iii ...
  2014-07-11 14:23     ` Joseph Vidal-Rosset
@ 2014-07-11 16:03       ` Nick Dokos
  0 siblings, 0 replies; 5+ messages in thread
From: Nick Dokos @ 2014-07-11 16:03 UTC (permalink / raw)
  To: emacs-orgmode

Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com> writes:

> Do not apologize, I have noticed that the variable was obsolete and I have tried to customize the new variable. I have even
> written the code
> (when (featurep 'org-element) (load "org-element" t t))  in my init.el  (which is too big and really a mess), and it doe not work
> either...
>

I went the customize route.

Nick

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-07-11 16:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-11 13:07 lists with a , b, c, or i, ii, iii Joseph Vidal-Rosset
2014-07-11 13:35 ` Nick Dokos
2014-07-11 14:17   ` Nick Dokos
2014-07-11 14:23     ` Joseph Vidal-Rosset
2014-07-11 16:03       ` Nick Dokos

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).