I'm trying to create a bibliography with .bib file but it don't print in pdf.
My bib file has this structure:
@book{latexcompanion,
author = {Michel Goossens and Frank Mittelbach and Alexander Samarin},
title = {The \LaTeX\ Companion},
year = {1993},
publisher = {Addison-Wesley},
location = {Reading, Massachusetts}
}
and my file has this aspect:
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\addbibresource{report.bib}
\begin{document}
\chapter{Bibliografia}
ola \cite{latexcompanion}
\printbibliography
\chapter{Anexos}
\end{document}
What am I doing wrong? Cumps.
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Adam Liter Jul 10 '14 at 03:06pdflatex,biber,pdflatex? – cfr Jul 10 '14 at 03:13}results in code that compiles just fine for me. Like @cfr asked, are you running the correct compilation sequence? See Question mark instead of citation number – Adam Liter Jul 10 '14 at 03:14