For some pages in a book document, I need to manually set the page number to an arabic alphabet character.
For example,
The first page of my document should have آ as its page number, and second page should be ب and third page should be ج.
I don't need the page numbers to be automatically set as the pages with this format are 5 or 6 at most. So manually setting them would work but I can't find any command which allows me to set alphabet characters for a specific page.
Please note that, I don't want to set the page numbers to arabic numbers as suggested here with this command : \renewcommand{\thepage}{\arabic{page}}. I need to set the page number to an arabic alphabet character such as آ or د.
What I've Tried:
\renewcommand\thepage{آ}: I've tried doing this before every page that I want to manually set but as soon as I do another\renewcommand\thepage{ب}for the next page, then the first page number is overwritten toب.\setcounter{page}{آ}: this obviously won't work as it excepts a number and not an alphabet character.
So, is there a way to manually set the page number of specific pages to arabic alphabet characters?
\renewcommand\thepageuse\clearpage. – Skillmon Sep 02 '17 at 22:40\let\oldpage\thepagethen\xdef\thepage{whatever}and on next page\let\thepage\theoldpageand\stepcounter{page}{-1}if needed – koleygr Sep 02 '17 at 22:44