everyone!
For a long time, I have been using bibtex for generate bibliography in my docs. Now, i am trying to migrate to biblatex in Mac.
I have followed the steps to generate a bibliography, that seems to be straightforward like the bibtex. So, for a simple code:
\documentclass{article}
% ---------------------------
\usepackage[utf8]{inputenc}
\usepackage[style=authoryear,
hyperref = true,
backref = true,
]{biblatex}
\bibliography{biblio}
% ---------------------------
\begin{document}
\cite{you2016}
\printbibliography
\end{document}
When compiling, the result is:
Compiling bibtex in Texshop, I always get the same error:
This is BibTeX, Version 0.99d (TeX Live 2015)
The top-level auxiliary file: Sem-Título.aux
I found no \citation commands---while reading file Sem-Título.aux
I found no \bibdata command---while reading file Sem-Título.aux
I found no \bibstyle command---while reading file Sem-Título.aux
(There were 3 error messages)
Using the bibtex package, I get the expected result. What would the solution be for using biblatex?
Thanks in advance!
