删除 apacite 中年份周围的括号

删除 apacite 中年份周围的括号

我需要删除参考书目中年份周围的括号。我正在使用 apacite。

我的设置:

\usepackage{apacite}
\usepackage{natbib}
...
\nocite{*}
\bibliographystyle{apacite}
\bibliography{literature}

当前版本:

Callenbach, E. (2002). The Gleaners and I 

所需版本:

Callenbach, E. 2002. The Gleaners and I

有没有什么办法可以将我的引文格式化成这样?

答案1

\BBOP您可以通过重新定义和宏来删除括号\BBCP,如文档第 33 页所述apacite。这需要在 中完成\AtBeginDocument

\begin{filecontents}{\jobname.bib}
@book{Saussure1995,
    Author = {Ferdinand de Saussure},
    Origyear = {1916},
    Publisher = {Payot},
    Title = {Cours de Linguistique G{\'e}n{\'e}rale},
    Year = {1995}}
\end{filecontents}
\documentclass{article}
\usepackage{apacite}
\usepackage{natbib}
\AtBeginDocument{
\renewcommand{\BBOP}{}
\renewcommand{\BBCP}{}
}
\begin{document}

\cite{Saussure1995}
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}

代码输出

相关内容