I cannot get bibliography to work correctly on overleaf.com
Below a minimal case. The citation in the abstract instead of rendering as [1], renders as [bib:imdb], and I get an error in the log file: You have cited something which is not included in your bibliography
\documentclass[]{article}
\usepackage{booktabs}
\usepackage{biblatex}
\title{Title}
\author{Author}
\begin{document}
\begin{abstract}
Try citation \cite{bib:imdb}
\end{abstract}
\begin{thebibliography}{9}
\bibitem{bib:imdb} IMDB
\end{thebibliography}
\end{document}
thebibliographyand thebiblatexpackage are incompatible. You can either usethebibliographyand retain full manual control over your bibliography output, orbiblatexand get an automatic bibliography and citations. See also https://tex.stackexchange.com/q/392637/35864 – moewe Nov 11 '18 at 12:29