bibentry 不适用于 apacite

bibentry 不适用于 apacite

您是否已设法使用bibentryapacite根据的手册,bibentry应该可以使用,但我无法使其工作。而且我在 CTAN 上找不到手册。我只找到了apaciteapacitebibentry这个文件.bibentry是 的一部分,但是的手册中natbib没有提到任何内容。bibentrynatbib

bibentry可以很好地与 配合使用,但我更natbib喜欢使用,因为它可以更好地根据 APA 样式格式化参考书目。apacitenatbibapacite

我在问题末尾添加了示例。我收到的错误是:

! Paragraph ended before \citeauthoryear was complete.

PS 我想使用biblatexwithfulecite命令,但不幸的biblatex是不支持polyglossia,所以我必须使用它来代替babel

\begin{filecontents}{mytestbib.bib}
@BOOK{Cochran1977,
  author = {William Gemmell Cochran},
  title = {Sampling Techniques},
  year = {1977},
  publisher = {John Wiley \& Sons},
  address = {New-York},
}
\end{filecontents}

\documentclass{article}
\usepackage{filecontents}

\usepackage[natbibapa]{apacite}
\bibliographystyle{apacite}

% \usepackage{natbib}
% \bibliographystyle{apalike}

\usepackage{bibentry}
\nobibliography*

\begin{document}

This is full citation of \bibentry{Cochran1977}

A regular citation of \citet{Cochran1977}.

\bibliography{mytestbib}

\end{document}

相关内容