Show page count of generated PDF? #12

Closed
opened 2022-04-15 14:57:07 +02:00 by decentral1se · 1 comment
Collaborator

Would be super handy! Especially for planning the print as you build up the document.

Would be super handy! Especially for planning the print as you build up the document.
Author
Collaborator

This is possible via CSS now:

@page {
  size: A4 portrait;
  counter-increment: page;

  @bottom-center {
    content: counter(page);
    padding-bottom: 5px;
  }
}
This is possible via CSS now: ```css @page { size: A4 portrait; counter-increment: page; @bottom-center { content: counter(page); padding-bottom: 5px; } } ```
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: CC/octomode#12
No description provided.