biber:警告——没有定义数据源!

biber:警告——没有定义数据源!

目前,我正努力创建我的参考书目。我总是收到来自 Biber 的消息“警告 - 未定义数据源!”。

那么我尝试了什么来解决我的问题呢?

  • 我在 MikeTeX 的包管理器中更新了 Biber、BibLaTeX 和 natbib
  • 我做了一个小例子来确保问题与我原来的 LaTeX 文件中的任何其他内容无关,但问题仍然存在
  • 我通过谷歌查找了这条消息,并尝试了其他人提供的解决方案,但都没有对我有用

所以我希望你们能发现我的错误或者告诉我该怎么做。

以下是示例:

\documentclass[a4paper]{scrbook}

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

\usepackage[square]{natbib}

\begin{document}

    \citep[S.~15]{Hevner2004}

    \bibliographystyle{natdin}

    \bibliography{complete}

\end{document}

complete.bib内容:

@article{Hevner2004,
 author = {Hevner, A. R. and March, S. T. and Park, J. and Ram, S.},
 title = {{Design Science in Information Systems Research}},
 journal = {MIS Q.},
 issue_date = {March 2004},
 volume = {28},
 number = {1},
 month = {mar},
 year = {2004},
 pages = {75--105},
 numpages = {31},
 url = {http://dl.acm.org/citation.cfm?id=2017212.2017217},
 acmid = {2017217},
 publisher = {Society for Information Management and The Management Information Systems Research Center},
 address = {Minneapolis, MN, USA}
}

更新示例:

\documentclass[a4paper]{scrbook}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[natbib=true]{biblatex}
\addbibresource{complete}


\begin{document}

    \citep[S.~15]{Hevner2004}
    \bibliographystyle{natdin}

\end{document}

相关内容