On 10/02/2009 11:31 AM, ignacio martinez wrote:
Hi,
When I create a doccument with lyx with section and subsections i get
somethig like this:
1. Section
1.1 subsection
1.1.1subsubsection
I would like to get
1) Section
1.a) subsection
1.a.i) subsubsection
How can i do that?
You need to redefine the macros: \thesection, \thesubsection, and
\thesubsubsection, e.g.:
\newcommand\mysection{\arabic{section}}
\renewcommand\thesection{\mysection)}
\newcommand\mysubsection{\mysection.\arabic{subsection}}
\renewcommand\thesubsection{\mysubsection)}
Etc. The complications here are due to the fact that you want the ")"
always at the end.
rh