未定义引用 natbib / 无法打印参考文献

未定义引用 natbib / 无法打印参考文献

我正在使用 natbib 包来管理我的论文参考文献。不幸的是,引用未定义,它在 pdf 中打印“?”而不是 bib 文件中的实际引用。我的参考文献也没有打印出来。我正在使用 texmaker。有人知道如何解决我的问题吗?我必须按照特定的顺序进行编译吗?我通常编译:PDFLatex - Bibtex - PDFlatex - 显示 pdf latex。

这是我的代码:

\documentclass[12pt,a4paper]{article}

%% Font
%\usepackage{mathpazo}
%% Mathematics
\usepackage{amsmath, latexsym}
%% Graphics
\usepackage{graphicx}
%% Line spacing
\usepackage[onehalfspacing]{setspace}
%% Bibliography
\usepackage[round]{natbib}
\bibliographystyle{abbrvnat}
%% Hyperlinks
\usepackage[hidelinks]{hyperref}

\usepackage{float}
\usepackage{booktabs}
\usepackage{footnote}
\usepackage[flushleft]{threeparttable}
\usepackage{lscape}

\newcommand{\eg}{{\it e.g.}}
\newcommand{\ie}{{\it i.e.}}
\begin{document}

\newpage
    \renewcommand{\thepage}{\roman{page}}
    \setcounter{page}{2}

\setcounter{page}{1}
\renewcommand{\thepage}{\arabic{page}}
\section{Introduction}

\section{Literature Review}

\section{Identity Index }

The identity index developed by FehrAdvice \& Partners AG measures a person's feeling of belonging to a particular cooparation. 
An identity is defined as a person's sense of self \citep{akerlof2000economics} .

\bibliography{References}


\end{document}

相关内容