Biblatex. 带注释书目的 APA 格式

Biblatex. 带注释书目的 APA 格式

我正在尝试编写一份需要 APA 样式文本引用但带有注释的参考书目的文档。

有人知道是否可以将两者结合起来吗?

我已尝试style=reading使用 biblatex 选项(并且我可以更改选项以获得与参考书目相关的我想要的内容),但文内引用显示的是“作者”而不是“作者(年份)”。

答案1

biblatex-apa支持annotation字段中的注释,并且(如果启用该loadfiles选项)也支持外部bibannotation-<entrykey>.tex文件中的注释。

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=apa, loadfiles]{biblatex}

\begin{filecontents}{\jobname.bib}
@book{elk,
  author    = {Anne Elk},
  title     = {A Theory on Brontosauruses},
  year      = {1972},
  publisher = {Monthy \& Co.},
  location  = {London},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{filecontents}{bibannotation-elk.tex}
An annotation for this entry.
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,elk}

\printbibliography
\end{document}

Elk, A. (1972)。雷龙理论。Monthy & Co. 本条目的注释。

相关内容