My LaTex compiler is MiKTeX 2.9 (64-bit) on Windows 10. The front-end I'm using to build my document is Texmaker. I downloaded the Biblatex back-end Biber, but later found it was already installed within the following path:
C:\Program Files\MiKTeX 2.9\miktex\bin\x64
The tex file I'm building "main.tex" along with its bibliography "source.bib" are located within the same path, a folder named "project".
The file "main.tex" has:
documentclass{article}
\usepackage[backend=biber,
style=mla,
citestyle=authortitle-terse,
sorting=nty]{biblatex}
\addbibresource{source.bib}
\begin{document}
Some paragraph here \cite{thisref}.
\printbibliography
\end{document}
The file "source.bib" has:
@book{thisref,
title={A very long title},
author={Name LastName},
publisher={Random publisher},
year={3000},
shorttitle={Long title}
}
In Texmaker "Run" is set to "Quick Build" and "View" is set to "View PDF". When I click on "Run" the pdf shows only this:
Some paragraph here thisref
Why is the citation displayed wrong? Why isn't the bibliography showing?
biblatex. – moewe Sep 05 '17 at 05:06