목차, 그림 목록, 표 목록, 명명법의 페이지 번호 매기기 순서

목차, 그림 목록, 표 목록, 명명법의 페이지 번호 매기기 순서

목차, 그림 목록, 표 목록, 명명법의 페이지 번호 순서를 수정하는 방법을 모르겠습니다. 저는 \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}
}
}

관련 정보