目录、图片列表、表格列表和术语的页码顺序

目录、图片列表、表格列表和术语的页码顺序

我不知道如何确定目录、图表列表、表格列表和术语的页码顺序。我习惯将\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}
}
}

相关内容