\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[authordate-trad,backend=biber]{biblatex-chicago}
\title{A}
\author{B}
\date{\today}
\begin{document}
\maketitle
\autocite{kamenica2011bayesian}
\textcite{kamenica2011bayesian}
\bibliographystyle{plain}
\bibliography{VD_reference}
\end{document}
The content of bib file is as follows:
@article{kamenica2011bayesian,
title={Bayesian persuasion},
author={Kamenica, Emir and Gentzkow, Matthew},
journal={American Economic Review},
volume={101},
number={6},
pages={2590--2615},
year={2011}
}
What I would like to get is Kamenica and Gentzkow (2003) or (Kamenica and Gentzkow, 2003). The file just does not compile well. I believe I use some control sequences in a wrong way. Could you please tell me the correct ones instead? Thank you very much!

biblatexthe compilation sequence is going to be the same (unless you want to use the BibTeX backend, which is not recommended). A more generic style would be\usepackage[backend=biber, style=authoryear]{biblatex}instead of\usepackage[authordate-trad,backend=biber]{biblatex-chicago}. ... – moewe May 03 '22 at 21:01biblatex-based approach. – moewe May 03 '22 at 21:02latexmkwhich should take care of the appropriate number of latex runs for you. – Denis May 05 '22 at 06:55