4

I am writing my thesis. I want page numbering in roman for abstract, knowledge and arabic for the rest.

\pagenumbering{roman}
\input{Agradecimentos}
\input{Resumo}
\input{Abstract}

\tableofcontents
\listoffigures
\listoftables

\pagenumbering{arabic}

But the number 1 , begin in "list of tables". List of tables should be in roman number. How i can change it ?

Thanks

Heiko Oberdiek
  • 271,626
user46548
  • 737

1 Answers1

8

\pagenumbering{arabic} does not close the current page, thus if the page contains the list of tables, then the last page of it becomes numbered with arabic page numbers.

\listoftables
\clearpage
\pagenumbering{arabic}
Heiko Oberdiek
  • 271,626