Orden de numeración de páginas para tabla de contenido, lista de figuras, lista de tablas y nomenclatura.

Orden de numeración de páginas para tabla de contenido, lista de figuras, lista de tablas y nomenclatura.

No sé cómo arreglar el orden de numeración de las páginas del índice, lista de figuras, lista de tablas y nomenclatura. Yo suelo \renewcommandcambiar los números arábigos a romanos; sin embargo, para cada parte, los números comienzan desde uno (i). ¿Cómo puedo hacer que los números sean consistentes (comenzar desde i, ii,... para todas las partes)?

{\newcommand{\romantableofcontents}{ % creates a table of contents with roman (i, ii, iii, ...) numbering of the pages
    \newpage
    \pagestyle{plain}
    \pagenumbering{roman}
    \tableofcontents  
    \pagenumbering{arabic}
    \pagestyle{fancy}
}

\newcommand{\listoffiguresnew}{ % creates a table of contents with roman (i, ii, iii, ...) numbering of the pages
    \newpage
    \pagestyle{plain}
    \pagenumbering{roman}
    \listoffigures
    \newpage
    \pagenumbering{arabic}
}

\newcommand{\listoftablesnew}{ % creates a table of contents with roman (i, ii, iii, ...) numbering of the pages
    \newpage
    \pagestyle{plain}
    \pagenumbering{roman}
    \listoftables
    \newpage
    \pagenumbering{arabic}
}

\newcommand{\printnomenclaturenew}{ % creates a table of contents with roman (i, ii, iii, ...) numbering of the pages
    \newpage
    \pagestyle{plain}
    \pagenumbering{roman}
    \printnomenclature
    \newpage
    \pagenumbering{arabic}
}
}

información relacionada