I have many citations in biliography file that I am not using them in the text.
To be more specific, I have a file with name bibliography.bib and contains
@article{first, title={...}, etc}
@book{second, title={.....}, etc}
and so on. However, I am not using all of them in my document. Is there any way to identifying the references that I am not using and remove them? I am using overleaf if that's helpful!
Thank you so much for your help!
bibfile from thebblfile – Denis Aug 29 '21 at 15:39biblatex(as well as BibTeX) only add those entries to the bibliography list that were actually cited with\...citeand friends in the text. You can override this behaviour and add all entries from the.bibfile to the bibliography with\nocite{*}. Withbiblatexit is not too hard to separate the bibliography into works that were actually\...cited and those that were only added to the bibliography because of\nocite: https://tex.stackexchange.com/q/6967/35864. – moewe Aug 30 '21 at 06:17