I want to create this bibliography in latex, but it doest not work and I just get ?. How can I solve this problem?
\begin{filecontents*}{bibtest.bib}
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents*}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage{natbib}
\begin{document}
\cite{goossens93}
\bibliographystyle{chicago}
\bibliography{bibtest}
\end{document}