对于我的所有图表,“referencename”都未定义,引用也是如此

对于我的所有图表,“referencename”都未定义,引用也是如此

我的所有图表参考和引文都给出了未定义的警告,并且文档无法编译。我非常仔细地检查了\label和之间的拼写错误\ref。在添加参考书目之前,图表运行正常,因此不可能是拼写错误。我尝试运行多次以确保它可以自行解决,但没有任何结果。

我有

\documentclass[a4paper,12pt]{article}
\usepackage[margin = 1.2in]{geometry} 
\usepackage{graphicx}
\usepackage{float}

\begin{document}

\ref{figure1}

\begin{figure}[H]
\centering
\includegraphics[width=0.5\textwidth]{"location".PNG}
\caption{caption}
\label{figure1}
\end{figure}

\cite(Straubetal2015)

\bibliographystyle{unsrt}
\bibliography{Mybib}

\end{document}

并且它不会工作。对于引用,它们都是由\cite{...}一个大.bib文件形成的。.bib编译没有错误,只有几个溢出 \hbox. 引文条目

 @article{
 Straubetal2015,
 Author = {Straub, J.M. and New, J. and Hamilton, C.D. and Lominska, C. and 
 Shnayder, Y. and Thomas, S.M.},
 Title = {Radiation-induced fibrosis: mechanisms and implications for 
 therapy},
 Journal = {Journal of Cancer Research and Clinical Oncology},
 Volume = {141},
 Pages = {1985-1994},
 Year = {2015},
 note = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4573901/}}

相关内容