Apacite und apa6 drucken die Felder annote={} und annotate={} nicht

Apacite und apa6 drucken die Felder annote={} und annotate={} nicht

Ich versuche, eine kommentierte Bibliografie im APA-Format unter Verwendung der Pakete apaciteund zu schreiben apa6.

Auf Seite 56 des Apacite-Handbuchs heißt es, dass die annoteoder Felder mit oder `bibliographystyle{apacannx}` annotatefunktionieren sollten .\bibliographystyle{apacann}

Wenn ich das Dokument jedoch mit pdflatexund kompiliere, kann ich weder bibtexdie Felder noch die Felder ausdrucken . annote={}annotate={}

Es folgt ein Minimalbeispiel:

LaTeX-Datei:

\documentclass[apacite]{apa6}   
\title{Minimal Example}
\shorttitle{Min. e.g.}      
\begin{document}
\nocite{carlson1984s}
\bibliographystyle{apacann}
\bibliography{references} 
\end{document}

Bibliographiedatei:

@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}
}

Antwort1

Ich habe endlich die Lösung gefunden! Apacite muss eigenständig aufgerufen werden und darf nicht als Argument an '\documentclass[apacite]{apa6}' übergeben werden. Das folgende Minimalbeispiel druckt das Feld 'annote={}', aber mit 'anotate={}' funktioniert es immer noch nicht. Das ist jedoch gut genug!

\documentclass{apa6}
\usepackage{apacite}   
\title{Minimal Example}
\shorttitle{Min. e.g.}      
\begin{document}
\nocite{carlson1984s}
\bibliographystyle{apacann}
\bibliography{references} 
\end{document}

verwandte Informationen