
텍스트에서 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}