比布拉克斯。附註解的參考書目 APA 風格

比布拉克斯。附註解的參考書目 APA 風格

我正在嘗試編寫一個需要 APA 風格文字引用的文檔,但需要一個帶註釋的參考書目。

有誰知道是否可以將兩者結合在一起?

我嘗試過style=readingbiblatex 選項(我可以更改選項以獲得我想要的與參考書目相關的內容),但文字引用顯示“作者”而不是“作者(年份)”。

答案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}

埃爾克,A.(1972)。關於雷龍的理論。 Monthy & Co. 此條文的註釋。

相關內容