LaTeX 错误:缺少“biblatex”包

LaTeX 错误:缺少“biblatex”包

我正在处理我的 Overleaf 文档,并尝试使用natbib参考书目管理,对于我的.bib文档,我总是使用 Zotero,但当我尝试编译时,我仍然收到此错误

     LaTeX Error: Missing 'biblatex' package.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.16   {}
         
The bibliography requires the 'biblatex' package.

这是我的一些代码和.bib我使用过的代码。

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage[round]{natbib}
\bibliographystyle{unsrtnat}
\usepackage{csquotes}

\title{Lectura de Robert  S. Langer}
\author{Agustín Villarreal Carrillo}
\date{\today}

\makeatletter
\let\thetitle\@title
\let\theauthor\@author
\let\thedate\@date
\makeatother

\pagestyle{fancy}
\fancyhf{}
\rhead{Tarea 1}
\lhead{\theauthor}
\rfoot{\thepage}

\begin{document}
\input{Portada}
\input{MarcoTeorico}
\input{Conclusiones}

\bibliography{Sample}

\end{document}

.bib文件是

@misc{noauthor_professor_nodate,
    title = {Professor {Robert} {S}. {Langer} – {Langer} {Lab}},
    url = {https://langerlab.mit.edu/langer-bio/},
    language = {en-US},
    urldate = {2022-01-19},
    file = {Snapshot:C\:\\Users\\agust\\Zotero\\storage\\JNKZG75X\\langer-bio.html:text/html},
}

@misc{noauthor_robert_nodate,
    title = {Robert {Langer}: {El} ingeniero químico que ayudó a cambiar la medicina – {Fundación} {Centro} {Diagnóstico} {Nuclear}},
    shorttitle = {Robert {Langer}},
    url = {https://www.fcdn.org.ar/robert-langer-el-ingeniero-quimico-que-ayudo-a-cambiar-la-medicina/},
    language = {es},
    urldate = {2022-01-19},
    file = {Snapshot:C\:\\Users\\agust\\Zotero\\storage\\HBUT3GZD\\robert-lang

我非常感谢您能回答的任何帮助,谢谢大家!

相关内容