Seitenstil auf die erste Seite der Bibliographie anwenden

Seitenstil auf die erste Seite der Bibliographie anwenden

Ich habe ein Problem damit, die Seitenzahl nur auf der ERSTEN Seite der Bibliographie zu zentrieren. Folgendes ist mein Code:

\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 ist

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

Antwort1

Hinzufügen \def\thispagestyle#1{}löst das Problem

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

verwandte Informationen