I would like to know how to remove the numbering for a specific page.
I found several ways to do this, the simplest of which is \thispagestyle{empty} from https://tex.stackexchange.com/a/111570/201720.
Now, this command does indeed hide the number of a given page, however, LaTeX still counts that page. To clarify what I mean, say my document contains 5 pages. What I want to do is to hide the number of page 4 PLUS have LaTeX not counting that page, such that on page 5, the number 4 shows up, not 5.
Put another way, I want the pages to be numbered as:
- 1
- 2
- 3
- no page number here
- 4

\addtocounter{page}{-1}– DG' May 25 '20 at 08:33