\printbibliography 관련 문제

\printbibliography 관련 문제

저는 논문을 작성 중인데 APA 인용 스타일을 사용해야 합니다.

내 기본 문서에서 다음 코드를 사용했습니다.

\usepackage[backend=biber,style=apa,sorting=none,natbib=true]{biblatex}
\addbibresource{library.bib} 
\usepackage[autostyle=true]{csquotes} 

그리고 내 주요 문서의 끝 부분에 ..

\printbibliography[heading=bibintoc,[title={References}]

그러나 나는 항상 다음과 같은 오류가 발생합니다.

"정의되지 않은 제어 순서. \printbibliography[heading=bibintoc,[title={References}]"

또한 내 참조 테이블에는 (2015)eg 대신 (yearmonthday)가 표시되며 참조는 알파벳순으로 정렬되지 않습니다.

답변1

비블라텍스를 사용할 때 확인해야 할 사항이 몇 가지 있습니다. 그 중 일부는 이미 댓글에 설명되어 있습니다. 시작하려면 다음과 같아야 합니다
. 제가 사용하는 템플릿의 작동 예는 다음과 같습니다.\printbibliography\printbibliography[heading=bibintoc,title=References]

\usepackage[american]{babel}
\usepackage[style=apa,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa} %Literaturverzeichnis american-apa style
\addbibresource{library.bib} 
\usepackage[babel,threshold=2]{csquotes}

답변2

제가 보기에는 브래킷이 너무 많이 닫혀 있는 것 같습니다.

대신 이것을 사용해 보세요:

\printbibliography[heading=bibintoc,title={References}]

관련 정보