로마 숫자 페이지 번호가 증가하지 않음

로마 숫자 페이지 번호가 증가하지 않음

제목 페이지부터 목차 페이지까지의 모든 페이지에 로마 숫자를 사용하여 번호를 매기려고 합니다.

현재는 내용의 두 번째와 마지막 페이지인 II를 제외하고 모든 페이지에 동일한 로마 숫자 I가 매겨져 있습니다.

목차 페이지까지 로마 숫자가 증가하지 않는 것 같습니다. 그런 다음 제대로 작동하는 목차 페이지 이후에 페이지 번호 매기기 스타일을 아랍어로 변경합니다.

\documentclass[12pt,a4paper]{report}
\begin{document}
\begin{titlepage}\centering
Main title page
\end{titlepage}

\pagenumbering{Roman}
\begin{titlepage}
\thispagestyle{plain}
Dissertation title
\end{titlepage}


\newpage
\clearpage
\begin{center}
\thispagestyle{plain}
This dissertation may be made available for consultation within the University Library and may be photocopied or lent to other libraries for the purposes of consultation.
\end{center}
\clearpage

\begin{abstract}
\thispagestyle{plain}
Abstract text
\end{abstract}

\cleardoublepage
\tableofcontents
\cleardoublepage

\pagenumbering{arabic}
\chapter{Introduction}
Intro


\end{document}

답변1

보고서 클래스에서는 titlepage본질적으로 번호가 없는 페이지를 만들도록 설계되어 페이지 수를 0으로 재설정합니다(따라서 페이지 스타일과 함께 사용하면 번호가 없는 페이지를 1로 만듭니다 empty) . 내부적으로 \abstract호출하여 \titlepage페이지를 다시 재설정합니다.

\stepcounter{page}그렇게 하지 않도록 이러한 구성을 재정의할 수도 있지만 페이지 나누기를 강제로 적용하는 지점 이후에 더 간단하게 말할 수 있습니다 .

관련 정보