TexMaker 调用旧文件

TexMaker 调用旧文件

我创建了一个参考列表并调用它References.bib,并尝试放入一个引文,一切都很好。但是,我修改了文件中的文本References.bib以显示新引文,并删除了旧引文。现在当我调用时References.bib,它仍然显示旧引文,尽管它们与该引文没有任何关系,并且不显示新引文。它似乎是凭空捏造旧引文。我的代码如下

\documentclass[a4paper, 12pt]{article}

\usepackage{amsthm}
\theoremstyle{definition}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{apacite}
\usepackage[hyphens]{url}
\geometry{left=0.9in,right=0.9in,top=1in,bottom=1in}

\begin{document}
\title{Why are Hydrogen Cars Rarely Seen?}
\author{Thomas Breust - u7106139} 
\date{}
\maketitle
\addtolength{\baselineskip}{.15\baselineskip}   

blah blah blah 

\newpage
\bibliographystyle{apacite}
\bibliography{References.bib}
\end{document}

该文件的代码References.bib

@article{dowling_2019,
    title={Hyundai Nexo: first hydrogen car certified for Australia, now for the refuelling stations},
    url={https://www.caradvice.com.au/805257/hyundai-nexo-certified-australia/},                    journal={caradvice},
    author={Dowling, Joshua}, 
    year={2019}, 
    month={Nov}
    
}

参考列表的输出如下所示

Thomas, CE (2010 年 7 月)。氢燃料电池电动汽车与其他替代能源的比较。AZO Cleantech。检索自https://www.azocleantech.com/文章.aspx?文章ID=214

显然这不是我文件中写的引文References.bib。有人知道如何解决这个问题吗?谢谢

相关内容