I wrote the code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\addbibresource{bibliografia.bib}
\title{\textbf{Template}}
\date{\vspace{-10ex}}
\begin{document}
\maketitle
Ciao\cite{sun2016multi}
\printbibliography
\end{document}
and the file bibliografia.bib:
@article{sun2016multi,
title={A multi-technique reconfigurable electrochemical biosensor: enabling personal health monitoring in mobile devices},
author={Sun, Alexander and Venkatesh, AG and Hall, Drew A},
journal={IEEE transactions on biomedical circuits and systems},
volume={10},
number={5},
pages={945--954},
year={2016},
publisher={IEEE}
}
It works in ShareLatex, but not works in Texmaker. How can I fix it?
Before compiling file.tex, I clicked on strumenti->biblatex.
Texmaker shows me the following error message:
Process started
This is BibTeX, Version 0.99d (MiKTeX 2.9.6350 64-bit) The top-level auxiliary file: Es bibliografia.aux I found no \citation commands---while reading file Es bibliografia.aux I found no \bibdata command---while reading file Es bibliografia.aux I found no \bibstyle command---while reading file Es bibliografia.aux (There were 3 error messages)
Process exited with error(s)
Thank you for your time.

biblatexisbiber. If you absolutely want to usebibtex(losing some functionalities of biblatex), use\usepackage[backend=bibtex]{biblatex}in your preamble. – Bernard Aug 17 '18 at 10:51biblatexwants you to run Biber and not BibTeX. Have a look at https://tex.stackexchange.com/q/154751/35864 to see how you can get TeXstudio to run Biber for you instead of BibTeX. In particular I would not advise to go forbackend=bibtex, that should only be a last resort if you have good reasons to use BibTeX (I'm not saying there are no good reasons, just that the average user should be using Biber). – moewe Aug 17 '18 at 10:52cmdand press enter, (3) a command line should open, type inbiber --versionand press enter. (4) If Biber is installed you should see a version information after a while (do not close the window or abort the process otherwise if the message does not appear directly, it may take a while) - if Biber is not installed you get an message right away. If Biber is installed follow the link above. – moewe Aug 17 '18 at 11:01.bibfile. Go to the main.texfile. Then run LaTeX, Biber, LaTeX, LaTeX all on the main file. See also https://tex.stackexchange.com/q/63852/35864, you never run BibTeX or Biber on the.bibfile it is always the basename of the.texfile. – moewe Aug 17 '18 at 15:39Process exited with error(s)
– Gennaro Arguzzi Aug 17 '18 at 15:42biblatexand Biber do not match. Make an update, see https://tex.stackexchange.com/q/55437/35864 and https://tex.stackexchange.com/q/108447/35864 – moewe Aug 17 '18 at 15:42biblatex. – moewe Aug 17 '18 at 15:51