For some reason biblatex isn't working properly. It seems it can't reference the .bib file, and thus doesn't print the citations properly. The strange thing is that I have an older .tex file that uses biblatex with the same sequence of commands, and it works. For some reason this new one doesn't work. In any case, here is my MWE:
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{edrefs.bib}
\begin{document}
This is the main\footcite{Edg} text.\footcite[32]{SkilFR}
\cite{Edg}
\nocite{*}
\printbibliography
\end{document}
And the .bib file:
@mvbook
{Edg,
AUTHOR = "Edgerton, Franklin",
TITLE = "{Buddhist Hybrid Sanskrit Grammar and Dictionary}",
VOLUMEs = 2,
PUBLISHER = "Yale University Press",
LOCATION = "New Haven",
YEAR = 1953
}
@article
{SkilFR,
author = "Skilton, Andrew",
title = "{Four Recensions of the Samādhirājasūtra}",
journaltitle = "{Indo-Iranian Journal}",
pages = "335--356",
volume = 42,
number = 4,
year = 1999,
publisher = "Klewer",
location = "Netherlands"
}
This is BibTeX, Version 0.99d (TeX Live 2015)
The top-level auxiliary file: bibtest.aux
I found no \citation commands---while reading file bibtest.aux
I found no \bibdata command---while reading file bibtest.aux
I found no \bibstyle command---while reading file bibtest.aux
(There were 3 error messages)
Thanks!
– Paul Nov 08 '15 at 11:10biberif you get a message saying This isbibtex... – Torbjørn T. Nov 08 '15 at 11:13biblatexwith thebackend=biberoption. That means you have to compile using Biber and not BibTeX. Please refer to the second link Johannes posted above to find out how to configure you editor to run Biber instead of BibTeX. – moewe Nov 08 '15 at 11:15bibtexandbiberare two different programs for generating and sorting a bibliography, and if you setbiblatexup to generate code for one of them (as you have done withbackend=biber) you cannot use the other -- they are incompatible in that sense. – Torbjørn T. Nov 08 '15 at 11:19bibtexand forgotten that I needed to change it tobiber. – Paul Nov 08 '15 at 11:25