%EF%BC%9A%E5%A6%82%E4%BD%95%E6%AD%A3%E7%A2%BA%E4%BD%BF%E7%94%A8%E5%A4%9A%E4%BD%8D%E7%9F%AD%E4%BD%9C%E8%80%85.png)
將 biblatex 與 apa 風格結合使用,我想引用機構作者的參考文獻。正如建議的上一篇文章我使用該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}
}