Hello,
is it possible to adapt the Table of Content macro so that it displays multi-digit numbering?
What I want, is numbering like this:
1. aaa
_ 1.1 aaa1
_ 1.2 aaa2
2. bbb ...
What I get when I enter "decimal" in the "List Style" field of the macro's menu is this:
1. aaaa
_ 1. aaa1
_ 2. aaa2
2. bbb
-------------------
I also tried something different with CSS and some self defined counters. This actually works but the layout is mixed up with the numbers overlapping etc. Here, I haven't figured out what settings must be changed (probably some margins and/or paddings?):
body { counter-reset: counterA; } ul li:before { content: counter(counterA) ". "; counter-increment: counterA; } ul li { counter-reset:counterB; } ul li ul li:before { content: counter(counterA) "." counter(counterB) ". "; counter-increment: counterB; }
Okay, found out: Clicking the checkbox "Display Section Numbering" does the job.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.