Biblatex。注釈付き参考文献付き APA スタイル

Biblatex。注釈付き参考文献付き APA スタイル

私は、テキスト内で APA スタイルの参照が必要で、注釈付きの参考文献が必要な文書を書こうとしています。

両方を一緒に入手することが可能かどうか知っている人はいますか?

私は biblatex のオプションを試しましたstyle=reading(参考文献に関して必要なものを取得するためにオプションを変更できます) が、本文の引用には「著者 (年)」ではなく「著者」と表示されます。

答え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. このエントリの注釈。

関連情報