Hello,
This is the second time I post this question

I am trying to nest packages in a RTF doc. These are the levels I want to generate:
1 - packages and subpackages
2 - use cases
3 - requirements
As an example, I would be much satisfied with

1. Package
1.1. SubPackage
1.1.1.Use Case1
1.1.1.1 Requirement1
So I tried the list overrides.

My result until now is like this. Each time you have a subpackage, the RTF generator puts the code "{Element.Name}" without replacement and starts at the first level again :
1. Package
1.1. {Element.Name}
1.1.1. {ElemRequirement.Name}
1. SubPackage
1.1. UC384 Search Access Right
1.1.1. BR172 At a given time, on a given access point, the responsibility type of an ARP Company may be either FER, BER, BFR, SBFR or SER.
Does someone now how to work with this ? It seems to be possible when looking at the result generated by a basic template provided under EA (although it does not have numbering).
My definition in the RTF generator looks like this:
package >
1. {Pkg.Name}
element >
1.1 {Element.Name}
requirement >
1.1.1 {ElemRequirement.Name}
< requirement
child elements >
< child elements
< element
child packages >
< child packages
< package