When running pdfLatex -using biber- in TexMaker, terminal returns empty bibliography. Today someone helps me to solve it with beamer, but now somethings seems wrong with the report document.
Just for completeness, the way I am doing the compilation is BibTex-->pdfLatex-->BibTex-->pdfLatex. Below there is a MWE and after it an image of Texmaker configuration.
Also when running bibtex terminal returns
INFO - This is Biber 2.7 INFO - Logfile is 'prueba.blg' INFO - Reading
'prueba.bcf' INFO - Found 0 citekeys in bib section 0 WARN - The file
'prueba.bcf' does not contain any citations! INFO - Writing 'prueba.bbl'
with encoding 'UTF-8' INFO - Output to prueba.bbl INFO - WARNINGS: 1
for some reason .bcf file is not being produced also.
I have seen other posts but am not sure that this is the same problem. Any help will be welcome.
\documentclass[12pt,twoside]{report}
\usepackage[headheight=18pt,a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm, headsep=18pt]{geometry}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{csquotes} %"para citar bien"
%\usepackage[numbers, super]{natbib} %problems if uncomment
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Article{hall2012glioxal,
Title = {Activation of benznidazole by trypanosomal type I nitroreductases results in glyoxal formation},
Author = {Hall, Belinda S and Wilkinson, Shane R},
Year = {2012},
Number = {1},
Pages = {115--123},
Volume = {56},
Journal = {Antimicrobial agents and chemotherapy},
Publisher = {Am Soc Microbiol}
}
\end{filecontents}
\usepackage[style=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
%\addbibresource{bibtex.bib}
\begin{document}
\printbibliography
\end{document}



\printbibliography, doesn't that mean to print it at the end of the document? @UlrikeFischer – Oct 10 '17 at 21:27\usepackage[numbers, super]{natbib}as I had on bibtex? – Oct 10 '17 at 21:29