bib 文件问题

bib 文件问题

我在 TeXnicCenter 中撰写报告并使用 bib 文件来创建参考文献。

我在创建参考列表时遇到问题。出现的错误是:

Warning -- It didnt find a database entry

在tex文件中添加bib文件:

\addcontentsline{toc}{section}{References}
\bibliographystyle{plain}          % uses file "plain.bst"
\bibliography{References4Marsklar} % expects file

以下是我在 bib 文件中的写法:

@TECHREPORT{Anomaly detection1,
  author = {J. Ekman and A. Holst.},
  title = {Incremental stream clustering and anomaly detection},
  institution = {SICS Technical Report T2008:01},
  year = {2008},
  number = {},
  owner = {Swedish Institute of Computer Science, Kista, Sweden}
}


@PHDTHESIS{Bayesian neural network model2,
  author = {Anders Holst},
  title = {The Use of a {Bayesian} Neural Network Model for Classification Tasks},
  school = {Dept.\ of Numerical Analysis and Computing Science. 
    Royal Institute of Technology. Stockholm, Sweden.},
  year = {1997},
  pages = {16--17}
}


@ARTICLE{Metod1,
  author = {R. Steinert and D. Gillblad},
  title = {Long-Term Adaptation and Distributed Detection of Local Network Changes},
  journal = {Global Telecommunications Conference (GLOBECOM 2010). Ind.\ 
    Applic.~\& Methods Lab.\ (IAM), Swedish Inst.\ of Comput.\ Sci.\ (SICS), 
    Kista, Sweden},
  year = {2010},
  pages = {1--5},
}

你能帮帮我吗?出了什么问题?

答案1

两点建议。首先,您是否记得先运行latex,然后bibtex,然后latex再运行两次?其次,您可能遇到问题,因为条目的键包含空格。请消除空格,例如,将其替换为破折号,以获得Bayesian-neural-network-model2而不是Bayesian neural network model2。当然,请务必相应地调整引用命令。

相关内容