Biblatex (apa):如何正確使用多位短作者

Biblatex (apa):如何正確使用多位短作者

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

相關內容