I am writing my thesis in Overleaf and on compilation it gives me a warning, which says: Using fall-back BibTeX(8) backend: functionality may be reduced/unavailable. I understand it is because I am using BibTex as my backend instead of Biber. However, my problem is that after the file is complied, it only shows me one of my references and not the other one.
Example of my document is below:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=bibtex,style=authoryear,natbib=true]{biblatex}
\addbibresource{References.bib}
\title{problem with references}
\author{abc }
\date{August 2019}
\begin{document}
\maketitle
\section{Introduction}
\printbibliography[heading=bibintoc,title={References}]
\end{document}
Is there any way I can use to show all the references? Note: In particular, my file does not show any references with a template of @misc
Edit: I forgot to add the \addbibresource{} to my example here. But it is there in my file. I didn't have any resources cited in my main.tex file. When I compile the file, it generates one of the resources on its own. However, when I add \cite{Reference1} \cite{Reference2} at the end on my main file it prints both of my resources. But it prints both of my references twice. First with their whole description and then just their title. I'm not sure how can I solve it.

biberyou should not usebibtexas the backend forbiblatex. But your sample document doesn't cite anything. Are you using\citeor\textciteetc for the references that don't show up? What does the.blgfile say? And you have to tellbiber/bibtexwhat your.bibfile is, so you are missing\addbibresource{yourbibfile.bib}. – Alan Munn Aug 04 '19 at 16:23backend=bibtex,instead of the defaultbackend=biber,. You can only use all ofbiblatex's features with Biber, with BibTeX you will be limited in what you can do. The example shown in the question is missing an\addbibresourceand doesn't cite anthying as Alan points out, but otherwise looks OK. Please show us the.bibentry of a problematic entry, and add the.blgfile to your question ... – moewe Aug 04 '19 at 17:30.blgin the same way as described in https://tex.stackexchange.com/q/462314/35864 for the.bbl. The.blgis the log file produced by BibTeX or Biber and should explain why certain entries are dropped. Note that only entries that are\cited or\nocited appear in the bibliography. – moewe Aug 04 '19 at 17:31\cited will appear in the bibliography. If you want to add an entry to the bibliography without citing it explicitly, you can use\nocite{<entrykey>}with\nocite{*}you add all available entries to the bibliography, see http://tex.stackexchange.com/q/17128/. The second reference should not be cited with only the title, it should also show an author-year label, but without the code of the.bibentry it is hard to say what went wrong. Can you recompile from scratch/clear the cache (http://tex.stackexchange.com/q/479736/) What do the.logand.blgfiles say? – moewe Aug 05 '19 at 19:53