How to convert roman-style page counter numbers at the "Table of Contents" pages - into decimal format?
Posted: Mon Oct 24, 2022 10:50 am
Hi, all!
Now I'm trying to make the numbering on the pages of the "Table of Contents" using the construction:
However, as a result, I get the first counter in Roman numeral format and it looks something like this:
I tried to deal with this, as it is written here, I style it with the word "decimal", but this did not give any result.
Like this:
And like this:
How can this be fixed?
Thanks in advance!
Now I'm trying to make the numbering on the pages of the "Table of Contents" using the construction:
Code: Select all
bottom-right {
content: "Page" counter(page) "/" counter(pages);
}
Code: Select all
Page iv/26
Like this:
Code: Select all
bottom-right {
content: "Page " counter(page, decimal) "/" counter(pages);
}
Code: Select all
bottom-right {
content: "Page " counter(page, decimal) "/" counter(pages, decimal);
}
Thanks in advance!