我正在尝试编写一份需要 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}