%3A%20%EC%97%AC%EB%9F%AC%20%EB%8B%A8%ED%8E%B8%EC%A0%80%EC%9E%90%EB%A5%BC%20%EC%98%AC%EB%B0%94%EB%A5%B4%EA%B2%8C%20%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95.png)
apa 스타일과 함께 biblatex를 사용하여 기관 저자의 참고 자료를 인용하고 싶습니다. 에서 제안한대로이전 게시물나는 shortauthor
약어를 포함하기 위해 필드를 사용합니다.
여러 기관 저자가 포함된 참고문헌에서 문제가 발생합니다. 여기서도 여러 항목을 사용하고 싶습니다 shortauthor
. 그러나 내가 얻은 결과는 예상한 것과 전혀 다릅니다.
예:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@BOOK{ACER2015,
author = {{Agency for the Cooperation of Energy Regulators} and {Council of European Energy Regulators}},
shortauthor = {{ACER} and {CEER}},
title = {{ACER/CEER} Annual Report},
year = {2015}
}
@TECHREPORT{CEER2014,
author = {{Council of European Energy Regulators}},
shortauthor = {{CEER}},
title = {{CEER} Advice},
year = {2014}
}
\end{filecontents}
\usepackage[backref=false,style=apa,backend=biber]{biblatex}
\addbibresource{references.bib}
\begin{document}
First reference produces output with unexpected format \parencite{ACER2015}.
Second reference looks correct \parencite{ACER2015}.
A third reference to one of the previous authors produces full output \parencite{CEER2014}.
\end{document}
shortauthor
예상되는 결과를 얻기 위해 해당 분야를 어떻게 활용할 수 있습니까 ?
답변1
이는 단편저자를 해당 저작자와 일치시켜야 하기 때문에 실제로는 쉬운 방법이 아닙니다. 주석 기능을 사용하는 것은 가능하지만 APA 스타일에 적용하기에는 약간 과잉입니다. 이것은 허용되지 않습니다:?
@BOOK{ACER2015,
author = {{Agency for the Cooperation of Energy Regulators} and {Council of European Energy Regulators}},
shortauthor = {{ACER/CEER}},
title = {{ACER/CEER} Annual Report},
year = {2015}
}