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

これは実際には簡単な方法では不可能です。なぜなら、shortauthor を関連する著者と一致させる必要があるからです。注釈機能を使用すれば可能ですが、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}
}

関連情報