I had to hard code my table of contents, list of tables, list of figures instead of using \tableofcontents and \listoftables because I had to align the headers properly (latex was not doing the proper alignment when the toc or lof extended to more than 1 page). That's a different issue. The issue I am having now is with page numbering.
I want these pages to have roman numeral page numbers. I have used the following
This works fine for numbering abstract, toc, list of tables. But the list of figures start with arabic numbering.
I have explicitly tried doing the following before hard coding the list of figures:
Code: Select all
\thispagestyle{myheadings}
\pagenumbering{roman}
But it still didn't help.
NOTE - I do have a \newpage before the list of figures start.