无法让 bibtex 工作

无法让 bibtex 工作

有人能帮忙吗?我无法使用 bibtex。我尝试阅读网站上的其他类似问题,但我真的不知道我的情况需要做什么。看起来我需要运行 bib 文件,但你如何运行 bib 文件?此外,当我在想要引用的文档中按下运行时,它只会显示“文件未找到”和“空参考书目”。希望有人能帮助我。

这是我的 tex 文件:

\documentclass{article}
\usepackage{biblatex}
\addbibresource{forsog.bib}

\begin{document}
\cite{kilde}
\printbibliography


\end{document}

这是我的 bib 文件:

@misc{kilde,
address = {New Jersey},
booktitle = {Differential equations :  an introduction to modern methods and applications /},
isbn = {9780471651413},
keywords = {Differential equations},
language = {eng},
publisher = {John Wiley},
title = {Differential equations :  an introduction to modern methods and applications },
}

bibtex[![][1]

在此处输入图片描述

答案1

这可能是您想要的输出: 在此处输入图片描述

tex 输入将是:

\documentclass{article}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{reference.bib}

\begin{document}
%
Some Text.

Cite your file here \cite{kilde}.

\printbibliography
%
\end{document}

并将 bib 文件的内容reference.bib(您可以更改文件名,但不能更改扩展名!)放在 tex 文件的同一目录中

@Book{kilde,
  author    = {John Doe},
  publisher = {John Wiley},
  title     = {Differential equations : an introduction to modern methods and applications},
  year      = {2020},
  address   = {New Jersey},
  isbn      = {9780471651413},
  keywords  = {Differential equations},
  language  = {In English},
}

当然,更多的评论对你来说可能很有用(例如,你的引用类型不是misc,而是book;你还缺少引用的作者,..)但在这个阶段,这些对你来说已经足够了。祝你好运,欢迎加入我们的社区。

如果您想要首先打印带有作者姓氏的参考书目,则请在 tex 文件中将此选项添加bibstyle=authoryear到 biblatex,如下所示:

\usepackage[backend=bibtex, bibstyle=authoryear]{biblatex}

其结果将是: 在此处输入图片描述

还有许多其他围兜样式可供选择,例如,,,,.. numeric(你可以看到更多alphabeticauthortitle这里)。

相关内容