这是我的主文件的乳胶代码:
这是 bbl 代码:
\begin{thebibliography}{}
@article{behkam_sitti_2008, title={Effect of quantity and configuration of attached bacteria on
bacterial propulsion of microbeads}, volume={93}, DOI={10.1063/1.3040318}, number={22}, journal=
{Applied Physics Letters}, author={Behkam, Bahareh and Sitti, Metin}, year={2008}, month={Dec},
pages={223901}}
\end{thebibliography}
有人能告诉我哪里出了问题吗?
编辑:当我摆脱 \begin{thebibliography}{} 和 \end{thebibliography} 时:
@article{behkam_sitti_2008, title={Effect of quantity and configuration of attached bacteria on
bacterial propulsion of microbeads}, volume={93}, DOI={10.1063/1.3040318}, number={22}, journal=
{Applied Physics Letters}, author={Behkam, Bahareh and Sitti, Metin}, year={2008}, month={Dec},
pages={223901}}
答案1
该.bbl
文件是 BibTeX 自动生成的临时文件。您几乎永远不需要手动修改它,也绝对不需要从头开始创建它。
如果您想使用.bib
像您的问题中所示的 LaTeX 条目,您需要将它们放入您传递给的文件名的<filename>.bib
位置:(在您的情况下为)。<filename>
\bibliography
\bibliography{<filename>}
biophysics.bib
当您运行 BibTeX 时,BibTeX 将从您的文件中提取条目.bib
,根据\bibliographstyle
您选择的内容对其进行排序和格式化,然后将其写入文件\begin{thebibliography}...\end{thebibliography}
的环境。然后,LaTeX 会在下一次运行 LaTeX 时.bbl
自动从文件中获取参考书目。.bbl
您可以在以下位置找到有关 BibTeX 工作原理的更多详细信息使用问号或粗体引用关键字代替引用编号. 大多数介绍 LaTeX 的参考书目的文章也应该解释如何使用 BibTeX 和.bib
文件(例如https://www.learnlatex.org/en/lesson-12),但也有专门关于使用 BibTeX 的资源https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex或者https://www.overleaf.com/learn/latex/Bibliography_management_with_natbib。