Quote Originally Posted by jclements View Post
I overlooked Insert > Page Number . . . (embarrassing).
Never! Every Post should be taken as a learning experience, otherwise TG would be sterile.

The debate for Xara should be on Page Numbering, as in where are the Book / Article / Section / Chapter / Annex / Appendix / Page (Left / Right / Double) / Paragraph (& Sub) / Heading / Table / Figure / List numbering concepts necessary for a proper DTP capability?
Dare I say, lost in the Master Page delivery?

Acorn


In passing, I use CSS Counters.
So for Page Numbering, create a ClassName, pageno, and apply to a Text Box with a space.
In Website > Head or Body (code), put:
Code:
<style>
body {
  counter-reset: pgno;
}
.pageno::after {
  counter-increment: pgno;
  content: "Variant " counter(pgno, lower-greek) "[" counter(pgno, armenian) "]";
}
</style>
This (clearly) only works for Transition and Scrolling websites.

The downside, it all turns to smoke in PDFs.

All Greek to me.xar