目录无法与 \nocite 配合使用

目录无法与 \nocite 配合使用

我正在写我的学士论文,在论文的最后我想引用所有论文(有很多问题\cite{}等等,所以没有用到)。现在我必须列出参考文献。

我在文中没有使用任何代码进行引用。

现在我需要参考部分。我尝试了\nocite{*}。它起作用了,但现在有两个问题:

  1. 当我使用 时,目录不会出现\nocite{*}。如果没有 *,目录会出现,但我没有参考列表。
  2. 参考文献的标题应突出显示/加粗,并在目录中稍后出现。

非常感谢您的帮助:)

\documentclass[a4paper,man,floatsintext,donotrepeattitle,natbib]{apa6}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{tabulary}
\usepackage{changepage}
\usepackage{booktabs} % For formal tables
\usepackage{hyperref} %For referencing tables and figures
\usepackage{subcaption} %allows for subfigures to align them next to each other
\usepackage{pdfpages} %This is to insert the front page from the word template

\beging{document}
\section{Abstract}
\clearpage
\tableofcontents
\clearpage

\section{Introduction}
\section{Theory}
\subsection{Effects}
\section{Discussion}

\nocite{*}

\bibliography{BA}

相关内容