引文未顯示在作者年份風格的文字和參考書目中

引文未顯示在作者年份風格的文字和參考書目中

我有下面的程式碼。

\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}

但這是行不通的。引用顯示?在文章中,而不顯示在參考書目中。如果我將 sytle 更改為\bibliographystyle{plain},它會起作用並在文章中顯示數字 1、2、3 等。但我想要有作者年份的風格。

以下是 中的一個引用的範例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}
}

我的程式碼有什麼問題嗎?

相關內容