如何从目录中删除参考文献

如何从目录中删除参考文献

我有以下代码:

\documentclass[a4paper,12pt]{article}
\usepackage[margin=2cm]{geometry} %showframe
\begin{document}
\tableofcontents
\newpage
\section*{Abstract}
\section{Introduction}
\newpage
\bibliographystyle{apacite}
\bibliography{references}
\end{document}

当我创建目录时,它会在目录中添加“参考资料”,我该如何删除它,使其不包含在目录中?到目前为止,我尝试过类似

\bibliography*{references}

答案1

这个问题的答案是以下命令:

\usepackage[notocbib]{apacite}

相关内容