apacite+bibtopic:如何不打印标题

apacite+bibtopic:如何不打印标题

我需要在 APA 格式的 tex 文件中提供多个参考书目列表。

以下是示例代码:

\documentclass[letterpaper, 12pt, draft]{report}
\usepackage[english]{babel}
\usepackage{apacite}
\usepackage{bibtopic}

\begin{document}

\chapter{FIRST CHAPTER}

\begin{btSect}[apacite]{bibfile}
    \section{First citation list}
    \btPrintAll
\end{btSect}
\end{document}

如果我使用plain样式,则引用列表上方没有“参考文献”(默认行为bibtopic)。但是使用apacite样式时,“参考文献”是无法避免的。

任何帮助,将不胜感激。

答案1

您可以使用

\usepackage[notocbib]{apacite}

之后,您可以使用以下命令更改 bibname:

\renewcommand{\bibname}{Bla}

也许你还想将 bibname 重新添加到目录中。你可以使用

\addcontentsline{toc}{chapter}{\bibname}

相关内容