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}
    
}

參考文獻列表的輸出看起來像

托馬斯,CE(2010 年 7 月)。氫動力燃料電池電動車與替代品的比較。 AZO清潔技術。從...獲得https://www.azocleantech.com/文章.aspx?ArticleID=214

顯然這不是我的文件中所寫的引文References.bib。有人知道如何解決這個問題嗎?謝謝

相關內容