Nicolás schrieb:

Can LyX be configured somehow to use the enumerate style with roman numbers instead of arabic numbers?

This is not possible without redefining commands in the document preamble. You can fill out a bug report (enhancement) at bugzilla.lyx.org so that it won't get lost.

So far I have been using an ERT with \renewcommand{\labelenumi}{\roman{enumi}.} So far, if I insert a label in an enumerate item with roman-style, and then I reference that label, I get the corresponding arabic number and not the roman number.

Instead of redefining the label, redefine the counter: Add this to your preamble or in ERT before the enumeration

\renewcommand{\theenumi}{\roman{enumi}}

To avoid that this settings affects only certain enumerations, add this i ERT behind the enumeration:

\renewcommand{\theenumi}{\arabic{enumi}}

Attached is an example LyX-document.

regards Uwe

Attachment: newfile5.lyx
Description: application/lyx

Reply via email to