참고문헌 괄호가 비어 있습니다.

참고문헌 괄호가 비어 있습니다.

어떻게 든 내 Biblatex가 알파벳 스타일로 작동하지 않습니다. 결과는 다음과 같습니다

숫자 스타일이 정상적으로 작동합니다. 내 헤더는 다음과 같습니다

\usepackage[
backend=biber,
style=alphabetic,
citestyle=authoryear
]{biblatex}
%
\addbibresource{literatur/literatur.bib}

다음과 같이 인용:

\cite{bsi}

내 .bib 파일은 다음과 같습니다.

@online{bsi,
    ALTauthor = {Bundesamt für Sicherheit in der Informationstechnik},
    title = {Cloud Computing Grundlagen},
    urldate = {2019-11-14},
    url = {https://www.bsi.bund.de/DE/Themen/DigitaleGesellschaft/CloudComputing/Grundlagen/Grundlagen_node.html}
}

어떤 아이디어가 문제일까요?

답변1

라벨 에 대한 표준 정의는 필드( , , 중 하나 )와 /를 alphabetic취하고 "SR98" 라인을 따라 두 필드를 조합하여 결합하려고 합니다. 필드를 사용하여 레이블의 일부를 재정의하거나 전체 레이블을 재정의할 수 있습니다 .labelnameauthoreditortranslatordateyearlabellabelnameshorthand

예제 항목에서는 언급된 필드가 채워지지 않았으므로 biblatex항목에서 레이블을 생성하지 않습니다. 최소한 을 제공하는 것이 가능하므로 author다음과 같은 것을 제안하고 싶습니다.

\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=alphabetic, backend=biber]{biblatex}


\begin{filecontents}{\jobname.bib}
@online{bsi,
  author      = {{Bundesamt für Sicherheit in der Informationstechnik}},
  shortauthor = {BSI},
  title       = {Cloud Computing Grundlagen},
  url         = {https://www.bsi.bund.de/DE/Themen/DigitaleGesellschaft/CloudComputing/Grundlagen/Grundlagen_node.html},
  urldate     = {2019-11-14},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}


\begin{document}
\cite{sigfridsson,bsi}
\printbibliography
\end{document}

[BSI] Bundesamt für Sicherheit in der Informationstechnik. 클라우드 컴퓨팅 Grundlagen. URL: https://www.bsi.bund.de/DE/Themen/DigitaleGesellschaft/CloudComputing/Grundlagen/Grundlagen_node.html (2019년 11월 14일 기준).


입력 키( bsi)는 순전히 내부 레이블로 간주되어야 합니다. 일반적인 표준 스타일 중 어느 것도 출력에서 ​​입력 키를 사용하지 않습니다.

관련 정보