I am writing my thesis and everything is working grat except the quoting from the bibliography. I have to say that I am more or less a newbee in this topic - so far I did with the normal bibliography "thebibliography", but I would like to use BibLaTex instead in order to have a better overview over all citations. Also it would be nice to use the abreviations including the first letters of the author and the latter two numbers of the year, e.g. "Fe02".
What I have so far is the following bib-file (only one element shown) saved under the name mylibrary.bib in the same location as the other tex-files.
@BOOK{fernholz02,
AUTHOR = {Fernholz, E. Robert},
YEAR = {2002},
TITLE = {Stochastic Portfolio Theory},
EDITION = {1st edition},
ISBN = {978-1-4419-2987-7},
PUBLISHER = {Springer Science + Business Media New York},
}
Now I have inserted the library in my tex-file in the following way (neglected the other things in the preamble):
\documentclass[a4paper]{report}
\usepackage[ngerman,english]{babel}
\usepackage[backend=biber]{biblatex}
\usepackage{csquotes}
\bibliography{mylibrary}
\begin{document}
\section{introduction}
This is the introduction and \cite{fernholz02} is such a nice book that it is often-cited in this thesis.
\printbibliography
\end{document}
When running the compiler with PDFLaTeX, it gives the following error messages. Mainly, he couldn't find the bibliography.
Citation 'fernholz02' on page 1 undefined
Empty bibliography
There were undefined references.
Please (re)run Biber on the file.... and rerun LaTeX afterwards.
I have already searched in other questions for the solution. Suggested was for example to run first PDFLaTeX, then BibTeX and then twice PDFLaTeX again. But this ends by the second time of compiling in an error message related to BibTeX:
This is BibTeX, Version 0.99d (TeX Live 2014/W32TeX) The top-level auxiliary file: test_biblio.aux I found no \citation commands---while reading file test_biblio.aux I found no \bibdata command---while reading file test_biblio.aux I found no \bibstyle command---while reading file test_biblio.aux (There were 3 error messages)
What I am doing wrong? I appreciate any help - thanks already!
biblatexas an Option (e.g.style=numeric) The use of\bibliography{<bib file>}is deprecated, use\addbibresource{<bib file>.bib}(note the file extension). For more, check this question: http://tex.stackexchange.com/questions/13509/biblatex-in-a-nutshell-for-beginners – Guilherme Zanotelli Nov 25 '16 at 13:14bibtex8 --wolfgang %as in the link.The 8-bit codepage and sorting file: 88591lat.csf The top-level auxiliary file: test_biblio.aux I found no \citation commands---while reading file test_biblio.aux I found no \bibdata command---while reading file test_biblio.aux I found no \bibstyle command---while reading file test_biblio.aux (There were 3 error messages)– psc Nov 25 '16 at 13:46\usepackage[backend=biber]{biblatex}. If you wish to use BibTeX than Change tobackend=bibtex. – Guilherme Zanotelli Nov 25 '16 at 13:48