페이지 스타일은 참고문헌의 첫 페이지에 적용됩니다.

페이지 스타일은 참고문헌의 첫 페이지에 적용됩니다.

참고문헌의 첫 번째 페이지에만 페이지 번호를 중앙에 배치하는 데 문제가 있습니다. 다음은 내 코드입니다.

\documentclass[12pt,a4paper,twoside]{report} % "openright" starts each chapter on an odd-page, remove if not needed
\usepackage[top=2.54 cm, bottom=2.54 cm, left=2.54 cm, right=2.54 cm]{geometry}

\usepackage{fancyhdr}
\usepackage{apacite}
\usepackage[hidelinks]{hyperref} % put before apacite

% define two styles : prelim and main
\fancypagestyle{prelim}{
\fancyhf{} %clear all headers and footers fields
\cfoot{\thepage} %prints the page number on the center side of the footer
\renewcommand{\headrulewidth}{0pt}
}

\fancypagestyle{main}{
\fancyhf{} %clear all headers and footers fields
\chead{\thepage} %prints the page number on the center side of the header
\renewcommand{\headrulewidth}{0pt}
}

\fancypagestyle{plain}{\pagestyle{prelim}}

    \begin{document}
% apply prelim styles for table of contentsl

\pagestyle{prelim} % roman page number from this page
\pagenumbering{roman} % roman page number from this page
\thispagestyle{empty} % no roman page number on this page

\tableofcontents
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables % if necessary
\clearpage
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures % if necessary
\newpage

% apply main style for chapter and reference
\pagestyle{main} 
\pagenumbering{arabic}
        \include{chp1}
        \newpage

        \bibliographystyle{apacite}
            \bibliography{mybib} % this is mybib 

    \end{document}

% chp1.txt는

\chapter{Introduction}
\thispagestyle{main}
  Text for Introduction.

답변1

추가하면 \def\thispagestyle#1{}문제가 해결됩니다.

\newpage
\def\thispagestyle#1{} % add this 
        \bibliographystyle{apacite}
            \bibliography{mybib} % this is mybib 

관련 정보