
引用文献ソース中に問題が発生しました。
%In the bibliography file:
@article{MER,
Title = {Mars Exploration Rover Engineering Cameras},
Author = {J. N. Maki,J. F. Bell III, K. E. Herkenhoff, S. W. Squyres, A. Kiely, M. Klimesh, M. Schwochert, T. Litwin, R. Willson, A. Johnson, M. Maimone, E. Baumgartner, A. Collins, M. Wadsworth, S. T. Elliot, A. Dingizian, D. Brown, E. C. Hagerott, L. Scherr, R. Deen, D. Alexander, J. Lorre},
Journal = {Journal of Geophysical Research},
Year = 2003,
Volume = 108
}
%In the .tex file
Cameras selected for this work have been taken from NASA’s MER (Mars Exploration Rover) mission \cite{MER}
答え1
フィールドに構文エラーがありますauthor
: 著者間の区切り文字は,
("カンマ") ではなく、キーワードですand
。したがって、フィールドを次のように書き換える必要があります。
Author = {J. N. Maki and Bell, III, J. F. and K. E. Herkenhoff and S. W. Squyres
and A. Kiely and M. Klimesh and M. Schwochert and T. Litwin and R. Willson
and A. Johnson and M. Maimone and E. Baumgartner and A. Collins and M. Wadsworth
and S. T. Elliot and A. Dingizian and D. Brown and E. C. Hagerott and L. Scherr
and R. Deen and D. Alexander and J. Lorre},
他のすべてのエントリについても同様です。
J. F. Bell III
ちなみに、に変更したことに注目してくださいBell, III, J. F.
。特に、カンマの使い方に注意してください。内で特定の著者名。この変更は、BibTeX がフルネームの構成要素を名、姓、および「ジュニア」構成要素に解析できるようにするために必要です。
補遺: あなたは述べなかったどうやって参考文献を作成しようとしましたが、投稿したスクリーンショットでは、biblatex
と を使用するように示されていますbiber
。biber によって生成されたログ ファイル (ファイル に含まれています\jobname.blg
) には、次の情報が含まれています。
[273] Utils.pm:411> ERROR - Name "J. N. Maki,J. F. Bell III, K. E. Herkenhoff,
S. W. Squyres, A. Kiely, M. Klimesh, M. Schwochert, T. Litwin, R. Willson,
A. Johnson, M. Maimone, E. Baumgartner, A. Collins, M. Wadsworth,
S. T. Elliot, A. Dingizian, D. Brown, E. C. Hagerott, L. Scherr, R. Deen,
D. Alexander, J. Lorre" has too many commas, skipping entry 'MER'
[273] Utils.pm:395> WARN - Entry with key 'MER' in section '0' is cited
and found but not created (likely due to sourcemap)
部分に注意してください
Name ... has too many commas, skipping entry 'MER'.
キーに対応するエントリはMER
作成されないため、引用コールアウトは入力引数のみを報告する。メル。
BibTeX も同様の「カンマが多すぎます」というエラー メッセージを出します。