如何解决“读取文件 something.aux 时未找到数据库文件”

如何解决“读取文件 something.aux 时未找到数据库文件”

您好,我正尝试将参考文献纳入我的论文,但编译时它一直显示以下内容。我正在使用 texstudio。消息:我正在跳过此命令的其余部分样式文件:plain.bst 我在读取文件 term paper.aux 时未找到数据库文件警告 - 我没有找到“Astrov”的数据库条目

我的代码是这样的:

\documentclass[letter,scriptaddress,twocolumn, prl,showkeys]{revtex4}

\usepackage{amssymb, amsmath, amstext, amscd, verbatim, mathtools, graphicx, float, caption, subcaption}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\begin{document}
This is my reference\cite[1]{Astrov}.
\bibliography{term paper}
\bibliographystyle{plain}
\end{document}

它们都在同一个目录中。我现在真的很担心这个问题,如果之前有人问过类似的问题,我深表歉意。提前感谢您的帮助!

答案1

BibTeX 不接受文件名中的空格。我认为没有人会触碰源代码来使其成为“现代风格”,所以除了从文件名中删除空格外,没有别的办法.bib

相关内容