Apacite 和 apa6 不列印 annote={} 和 annotate={} 字段

Apacite 和 apa6 不列印 annote={} 和 annotate={} 字段

apacite我正在嘗試使用和包按照 APA 格式編寫帶註釋的參考書目apa6

apacite 手冊第 56 頁指出annote或欄位應與或 `bibliographystyle{apacannx}`annotate一起使用\bibliographystyle{apacann}

pdflatex但是,當我使用and編譯文檔時bibtex,我無法讓文檔列印annote={}annotate={}字段。

最小範例如下:

乳膠文件:

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

相關內容