参考文献出现在章节标题页上,而不是从下一页开始

参考文献出现在章节标题页上,而不是从下一页开始

我正在撰写博士论文,除了参考文献的显示方式外,所有内容都已按要求格式化。

当我插入参考列表时:

\bibliographystyle{apacite}
\bibliography{Thesis.bib}

新建一章,标题页为“第 7 章:参考文献”。但是,参考文献不是打印在下一页,而是直接显示在章节标题下方,页脚布局也与论文的其余部分不同(见图)。

有没有办法让参考文献标题页保持空白(标题除外),然后在下一页打印参考文献列表?

以下是我的序言:


\documentclass[onecolumn,12pt]{report}
\usepackage[a4paper]{geometry}   
\newgeometry{hmargin={3cm,3cm}, vmargin={3cm,3cm}} 
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{amsmath}
\usepackage{graphicx} % inserting figures
\usepackage[doublespacing]{setspace}
%\usepackage[colorinlistoftodos]{todonotes}
\usepackage[T1]{fontenc}
\usepackage{charter} %Font
\usepackage{caption} %figure captions
\usepackage{floatrow}
\usepackage{subcaption}
\usepackage{makecell}
\usepackage{multirow} 
\usepackage{rotating}
\usepackage{enumerate}
\usepackage{titling}
\usepackage{titlesec}

\usepackage{sectsty}
\titleformat{\chapter}[display]
{\normalfont%
   \centering \fontsize{40}{50}% %change this size to your needs for the first line
    \bfseries}{\chaptertitlename\ \thechapter}{10pt}{%
    \vspace{1cm} \normalfont \huge %change this size to your needs for the second line
    }


\usepackage{placeins}
\usepackage{siunitx}
\usepackage[dvipsnames*,svgnames]{xcolor}
\usepackage[framemethod=default]{mdframed}
\usepackage[framemethod=default]{mdframed}
%\usepackage{titlesec}
\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyfoot{}
\fancyfoot[L]{\thepage}

\usepackage[textfont={it}]{caption}

\usepackage[numberedbib]{apacite}  %reference list
%\usepackage[square,numbers,sort&compress]{natbib}
%\bibliographystyle{unsrtnat}



\usepackage{array}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}}


%\raggedbottom

\usepackage[T1]{fontenc} 
\usepackage{float}
%\setlength{\droptitle}{-8em} 
%\setlength{\columnsep}{0.5cm}

%\usepackage{microtype}


 \usepackage{tocloft}
 
\renewcommand{\cftchapfont}{\bfseries}
\renewcommand{\cftchappagefont}{\bfseries}
\renewcommand{\cftchappresnum}{Chapter }
\renewcommand{\cftchapaftersnum}{:}
\renewcommand{\cftchapnumwidth}{6em}


\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=10000
\hbadness=10000

\setlength{\headheight}{15pt}



任何关于此问题方面的帮助都将非常感激。

在此处输入图片描述

答案1

请考虑学习如何制作MWE。还可尝试以下操作:

\documentclass[onecolumn,12pt]{report}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[unnumberedbib]{apacite}

\begin{filecontents}{\jobname.bib}
@ARTICLE{Doe05,
  author       = "Doe, J. and Other, X.",
  title        = "An interesting title",
  journal      = "A well regarded journal",
  volume       = "163",
  year         = "2005",
  pages        = "287--337",
}
\end{filecontents}

\begin{document}
\chapter{Introduction}
This based on \cite{Doe05}.
\bibliography{\jobname}
\bibliographystyle{apacite}
\end{document}

这个选项就是unnumberedbib您所寻找的吗?

相关内容