1

I am using asciidoctor-fopub to generate a pdf from an asciidoc.

The page number is added in the middle of the page footer. I would like to move it to the far right. I am convinced that this is doable. But I can't find any example of how to customize the page footer properly.

Thomas Sundberg
  • 4,098
  • 3
  • 18
  • 25

1 Answers1

1

Since you already have asciidoc files it might be easier to use asciidoctor-pdf directly. With asciidoctor-pdf it is possible to design your own footer with themes. How to apply themes is described here.

  • Unfortunately, I don't use asciidoctor-pdf as it doesn't handle footnotes properly. I was able to solve my problem, but in a very forceful way by adding hard spaces in the proper place. Ugly, but it solves the problem. – Thomas Sundberg Sep 21 '18 at 13:21