I am trying to get a simple example with a bibliography to run, but on my computer it just shows the reference name in brackets. When I compile the file on overleaf, it works just fine. Here is my texfile:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\bibliography{refs}
\begin{document}
Hello\cite{KandR}
\printbibliography
\end{document}
And my bibfile (named refs.bib):
@BOOK
{KandR,
AUTHOR = "Kernighan, Brian W. and Ritchie, Dennis M.",
TITLE = "{The C Programming Language Second Edition}",
PUBLISHER = "Prentice-Hall, Inc.",
YEAR = 1988
}
I use MikTeX and the biblatex package is downloaded. Is there any other installation missing? Do I need the biberfile somewhere?
latexmkandarara. – moewe Jul 30 '16 at 11:07latexmkis what is used behind the scenes in overleaf. – samcarter_is_at_topanswers.xyz Jul 30 '16 at 11:45.bcfis generated bypdflatex. Don't delete generated files unless you are, say, ready to archive a project or something and don't want to compile it again any time soon. You can recreate them, of course, but that gets to be a pain. – cfr Aug 01 '16 at 01:01