无法打印参考书目,引用显示为“未定义”

无法打印参考书目,引用显示为“未定义”

尽管我已经在文件中定义了参考书目.bib,但我的 LaTeX 文件似乎不接受它。我也使用 NatBib 进行引用。

这是我的 LaTeX 文档中出现错误的部分:

Lorem ipsum dolor sit amet, consectetur adipiscing elit\citep{atkins}

这是我的.bib文件:

@misc{atkins,
author = "James Domone",
title = " The challenges and benefits of the electrification of aircraft",
url = "https://www.atkinsglobal.com/~/media/Files/A/Atkins-Corporate/Electrification White Paper - digital.pdf"
}

这是错误日志:

Package natbib Warning: Citation `atkins' on page 2 undefined on input line 80.
....
Package natbib Warning: There were undefined citations.

这些是我正在使用的软件包:

\documentclass[journal]{new-aiaa}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}

\usepackage{natbib}

\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[version=4]{mhchem}
\usepackage{siunitx}
\usepackage{longtable,tabularx}
\setlength\LTleft{0pt} 

\begin{document}

\maketitle

\section{Introduction}

ABCDEF.\citep{atkins}

\bibliographystyle{plainnat}
\bibliography{bib}

\end{document}

我是 LaTeX 新手,我真的需要你的帮助来了解我哪里出了问题。非常感谢!

相关内容