%3A%20%E8%A4%87%E6%95%B0%E3%81%AE%E3%82%B7%E3%83%A7%E3%83%BC%E3%83%88%E3%82%AA%E3%83%BC%E3%82%B5%E3%83%BC%E3%82%92%E6%AD%A3%E3%81%97%E3%81%8F%E4%BD%BF%E7%94%A8%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95.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
これは実際には簡単な方法では不可能です。なぜなら、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}
}