I am new to LaTeX, and I am using biblatex for my project.
I have created a Reference.bib file which listed all the references regardless of whether they have been cited in the main body or not.
And I want the whole references list printed by the command \printbibliography.
Nevertheless, after compiling, it only printed the reference lists which were cited earlier in the main body. I am wondering is there anyone who might give me some advice? Any help is highly appreciated.
The preamble I used in my project is as below:
\usepackage[backend=bibtex,
style=numeric,
isbn=false,
pagetracker=true,
maxbibnames=50,
maxcitenames=3,
autocite=inline,
block=space,
backref=true,
backrefstyle=three+,
date=short]{biblatex}
\addbibresource{Reference.bib}
\nocite{*}prints all – Johannes_B Nov 10 '19 at 15:33