techreport 유형의 보고서에는 biblatex의 작성자만 있습니다.

techreport 유형의 보고서에는 biblatex의 작성자만 있습니다.

biblatex의 techreport 유형 보고서에 대해 질문이 있습니다. 설명서에서 techreport가 오래되었으므로 보고서를 선호한다는 내용을 읽었습니다. 그래서 나는 techreport 유형으로 보고서를 사용하지만 내 참조에는 작성자나 보고서만 표시됩니다. 아래는 내 코드입니다.

\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},
}

항목에 있는 두 개의 닫는 중괄호는 항목이 다음과 같이 구문 분석됨을 의미합니다.

@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이 더 이상 사용할 수 없다는 의미는 아닙니다. 별칭 유형 은 with @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},
}

실제로 이렇게 하면 약간의 타이핑 시간이 절약되므로 실제로 선호될 수 있습니다.

관련 정보