目次、図表一覧、表一覧、および命名法のページ番号順

目次、図表一覧、表一覧、および命名法のページ番号順

目次、図表一覧、表一覧、および命名法のページ番号の順序を修正する方法がわかりません。私は\renewcommandアラビア数字をローマ数字に変更していますが、各パートの番号は 1 (i) から始まります。番号を一貫して (すべてのパートで i、ii、... から始まるように) するにはどうすればよいですか?

{\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}
}
}

関連情報