I am following the biblatex in a nutshell (for beginners) and meet this error during compiling BiBTeX:
This is BibTeX, Version 0.99d (MiKTeX 2.9.6500) The top-level auxiliary file: test.aux I found no \citation commands---while reading file test.aux I found no \bibdata command---while reading file test.aux I found no \bibstyle command---while reading file test.aux (There were 3 error messages)
I find no \citation, \bibdata or \bibstyle command in my script as suggested from TeXmaker. Do you know what's wrong? The code is:
\documentclass{article}
\usepackage{biblatex}
\bibliography{References}
\begin{document}
test test\cite{dym_fourier_1972}
\printbibliography
\end{document}
I find this (duplicate?) question but I don't understand it: No \citation, \bibdata, \bibstyle commands

biblatex, the\bibliographycommand is deprecated. You really should write\addbibresource{References.bib}. Note that the filename extension (here:.bib) must be provided when using\addbibresourceto specify the bib file. – Mico Dec 14 '17 at 17:57biber, notbibtex. – egreg Dec 14 '17 at 18:07