著者年形式のテキストと参考文献に引用が表示されない

著者年形式のテキストと参考文献に引用が表示されない

以下のコードがあります。

\documentclass[11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{hyperref}      

\usepackage{mathtools}
\usepackage{colortbl,hhline}
\usepackage[x11names]{xcolor}
\usepackage{pdflscape}
\usepackage{appendix}
\usepackage{subcaption}
\usepackage[flushleft]{threeparttable}
\usepackage{amsmath}

% Natbib setup for author-year style
\usepackage[authoryear]{natbib}
 \bibpunct[, ]{(}{)}{,}{a}{}{,}%
 \def\bibfont{\small}%
 \def\bibsep{\smallskipamount}%
 \def\bibhang{24pt}%
 \def\newblock{\ }%
 \def\BIBand{and}%

\begin{document}
blablabla

\clearpage
\bibliographystyle{authoryear} 
\bibliography{references}

\end{document}

しかし、これは機能しません。引用は?記事内に表示され、参考文献には表示されません。スタイルを に変更すると\bibliographystyle{plain}、機能し、記事内に 1、2、3 などの番号が表示されます。ただし、著者年スタイルにしたいのです。

以下は、 の引用例の 1 つですreferences.bib

@article{Adjerid2022,
  title={Gain-loss incentives and physical activity: the role of choice and wearable health tools},
  author={Adjerid, I. and Loewenstein, G. and Purta, R. and Striegel, A.},
  journal={Management Science},
  volume={68},
  number={4},
  pages={2377-3174},
  year={2022},
  publisher={INFORMS}
}

コードに何か問題がありますか?

関連情報