+2 votes
in General IT Tips by (40.5k points)
I am creating a pdf file using overleaf latex. The page number on the table of contents needs to be in roman, and it should start with page number "iii". How can I force latex to start the page number from "iii"?

1 Answer

+2 votes
by (73.8k points)
selected by
 
Best answer

Add the following lines of code before "\tableofcontents{}". It will start the page number from "iii". Here {2} is telling latex to skip "i" and "ii".

\pagenumbering{roman}

\setcounter{page}{2}

Related questions

+1 vote
1 answer
+1 vote
1 answer
+2 votes
1 answer
+1 vote
1 answer

...