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월). 수소 연료전지 전기 자동차와 대안 비교. 아조클린텍. 검색 위치https://www.azocleantech.com/Article.aspx?ArticleID=214

분명히 그것은 내 파일에 기록된 인용문이 아닙니다 References.bib. 이 문제를 해결하는 방법을 아는 사람이 있습니까? 감사해요

관련 정보