
我正在嘗試編寫一個需要 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}