
apacite
私は、およびパッケージを使用して、APA 形式に従って注釈付き参考文献を作成しようとしていますapa6
。
apaciteマニュアルの56ページには、annote
またはフィールドは、または`bibliographystyle{apacannx}`annotate
で動作する必要があると記載されています。\bibliographystyle{apacann}
ただし、およびを使用してドキュメントをコンパイルするとpdflatex
、bibtex
ドキュメントでannote={}
またはannotate={}
フィールドのいずれかを印刷することができません。
最小限の例を以下に示します。
LaTeX ファイル:
\documentclass[apacite]{apa6}
\title{Minimal Example}
\shorttitle{Min. e.g.}
\begin{document}
\nocite{carlson1984s}
\bibliographystyle{apacann}
\bibliography{references}
\end{document}
書誌ファイル:
@article{carlson1984s,
title={What's social about social psychology? {W}here's the person in personality research?},
author={Carlson, Rae},
journal={Journal of Personality and Social Psychology},
volume={47},
number={6},
pages={1304--1309},
year={1984},
publisher={American Psychological Association},
doi={10.1037/0022-3514.47.6.1304},
annote={First annotation},
annotate={Second annotation}
}
答え1
ついに解決策が分かりました! Apacite は '\documentclass[apacite]{apa6}' に引数として渡されるのではなく、それ自体で呼び出す必要があります。次の最小限の例では 'annote={}' フィールドが出力されますが、'anotate={}' ではまだうまくいきません。しかし、これで十分です!
\documentclass{apa6}
\usepackage{apacite}
\title{Minimal Example}
\shorttitle{Min. e.g.}
\begin{document}
\nocite{carlson1984s}
\bibliographystyle{apacann}
\bibliography{references}
\end{document}