使用 Bibtex 时出错

使用 Bibtex 时出错

我有例子

\documentclass{article}
\begin{document}
    \vspace{-0.4em}
    \bibliographystyle{unsrt}
    \renewcommand{\section}[2]{\vskip 0.05em}
\bibliography{sample}

\end{document}

其中 'sample.bib' 是,

@BOOK{Wilkinson:2012qr,
    title={{S}tochastic {M}odelling for {S}ystems {B}iology},
    publisher = {Taylor {\&} Francis Group},
    author = {Darren J. Wilkinson},
    year ={2012},
    edition = {2nd},
}

并且由于某种原因,当我尝试运行此程序时,出现一条错误消息,提示“我无法打开样式文件 ieee.bst”,但我没有使用这种文件类型?

答案1

(评论太长,因此作为答案发布)

如果你使用与 TeX 发行版交互的“前端”(即某些编辑器程序),它应该提供一种方法来删除所谓的辅助文件(扩展名为 aux、blg、​​log、bbl 等的文件)。例如,如果你正在使用TeXworks,请单击顶行功能区中的“文件”按钮,然后选择“删除辅助文件...”。然后,从头开始重新编译。

这是示例代码的简化和精简版本的输出。

在此处输入图片描述

\RequirePackage{filecontents}
%% create 'sample.bib' on the fly:
\begin{filecontents*}{sample.bib}
@BOOK{Wilkinson:2012qr,
    title    ={Stochastic Modelling for Systems Biology},
    publisher={Taylor~\& Francis Group},
    author   ={Darren J. Wilkinson},
    year     ={2012},
    edition  ={2nd},
}
\end{filecontents*}

\documentclass{article}
\bibliographystyle{unsrt}

\begin{document}
\nocite{*}
\bibliography{sample}
\end{document}

相关内容