techreport タイプのレポートには、biblatex の著者のみが含まれます。

techreport タイプのレポートには、biblatex の著者のみが含まれます。

biblatex の techreport タイプのレポートについて質問があります。マニュアルには、techreport は古いので、report の方が推奨されていると書かれていました。そのため、techreport タイプの report を使用していますが、参照にはレポートの作成者しか表示されません。以下は私のコードです。

\documentclass[11pt,twoside,openright]{report}

\author{Nikkie Deelen}
\title{\textbf{DRAFT} Characterizing modules for the \cmsphttu{}}

\usepackage{csquotes}                                                                       % For using biblatex                
\usepackage[backend=biber,style=numeric-comp]{biblatex}                                     % New and improved biblatex
\addbibresource{intro.bib}
\ExecuteBibliographyOptions{sorting=none, maxnames=5, minnames=3, hyperref, backref, backrefstyle=three, abbreviate=false, date=long, urldate=long}

\begin{document}
    This is the techreport that I want to cite \autocite{lumiconcept}
\end{document}

これが私の intro.bib ファイルです:

@report{lumiconcept,
    author          = {Herr, W. and Muratori, B.}},
    title           = {Concept of luminosity},
    date            = {2006},
    type            = {techreport},
    url             = {https://cds.cern.ch/record/941318},
    urldate         = {2019-08-19},
    institution     = {{CERN}},
    doi             = {10.5170/CERN-2006-002.361},
}

私が見ているのは下記の内容だけです。タイトルや bibfile 内の他の内容も見たいのですが、どなたか手伝っていただけませんか?

Biblatex 出力

答え1

author入力欄に誤字があります

@report{lumiconcept,
    author          = {Herr, W. and Muratori, B.}},
    title           = {Concept of luminosity},
    date            = {2006},
    type            = {techreport},
    url             = {https://cds.cern.ch/record/941318},
    urldate         = {2019-08-19},
    institution     = {{CERN}},
    doi             = {10.5170/CERN-2006-002.361},
}

エントリ内の2つの閉じ中括弧は、エントリが次のように解析されることを意味します。

@report{lumiconcept,
    author          = {Herr, W. and Muratori, B.}
}

それ以外の文字はジャンク文字とみなされ、破棄されます。したがって、著者名のみが取得され、それ以外は取得されません。

余分な括弧を外すだけで、エントリが次のように表示されます。

@report{lumiconcept,
    author          = {Herr, W. and Muratori, B.},
    title           = {Concept of luminosity},
    date            = {2006},
    type            = {techreport},
    url             = {https://cds.cern.ch/record/941318},
    urldate         = {2019-08-19},
    institution     = {{CERN}},
    doi             = {10.5170/CERN-2006-002.361},
}

@techreport型エイリアスマニュアルのセクションにbiblatex記載されていますが、これはもう使用できないという意味ではありません。エイリアスタイプはと@techreport同等なので、問題のエントリを と指定してもまったく問題ありません。@reporttype = {techreport}

@techreport{lumiconcept,
    author          = {Herr, W. and Muratori, B.},
    title           = {Concept of luminosity},
    date            = {2006},
    url             = {https://cds.cern.ch/record/941318},
    urldate         = {2019-08-19},
    institution     = {{CERN}},
    doi             = {10.5170/CERN-2006-002.361},
}

実際には、これによって入力の手間が少し省けるので、むしろ好ましいかもしれません。

関連情報