
Estoy trabajando con texto sublime y cada vez que quiero agregar bibliografía falla con advertencias: bibliografía vacía. ¿Como puedo solucionar este problema? Aquí están mis códigos:
\documentclass[12pt, a4paper, leqno]{article}
\usepackage{a4wide}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{appendix}
\usepackage{float, afterpage, rotating, graphicx}
\usepackage{epstopdf}
\usepackage{longtable, booktabs, tabularx}
\usepackage{fancyvrb, moreverb, relsize}
\usepackage{eurosym, calc}
\usepackage{amsmath, amssymb, amsfonts, amsthm, bm}
\usepackage{newtxtext,newtxmath}
\usepackage{caption}
\usepackage{mdwlist}
\usepackage{xfrac}
\usepackage{setspace}
\usepackage{xcolor}
\usepackage{subcaption}
\usepackage{minibox}
\usepackage{makecell}
\renewcommand{\theadfont}{\normalsize}
\usepackage{geometry}
\geometry{
left=3cm,
right=2cm,
top=2cm,
bottom=2cm,
}
\usepackage[backend=biber]{biblatex}
\addbibresource{refs.bib}
\usepackage[unicode=true]{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
anchorcolor=black,
citecolor=black,
filecolor=black,
menucolor=black,
runcolor=black,
urlcolor=black
}
\widowpenalty=10000
\clubpenalty=10000
\setlength{\parskip}{2ex}
\setlength{\parindent}{0ex}
\setstretch{1.5}
\begin{document}
abcdefghijklmn...
\newpage
\printbibliography
\end{document}
y mi expediente dorsal es
@article{acemoglu2008income,
title={Income and democracy},
author={Acemoglu, Daron and Johnson, Simon and Robinson, James A and Yared, Pierre},
journal={American Economic Review},
volume={98},
number={3},
pages={808--42},
year={2008}
}
@book{baltagi2008econometric,
title={Econometric analysis of panel data},
author={Baltagi, Badi},
year={2008},
publisher={John Wiley \& Sons}
}
@article{kiviet1995bias,
title={On bias, inconsistency, and efficiency of various estimators in dynamic panel data models},
author={Kiviet, Jan F},
journal={Journal of econometrics},
volume={68},
number={1},
pages={53--78},
year={1995},
publisher={Elsevier}
}
Respuesta1
Debes citar las fuentes en tu documento para que aparezcan en la bibliografía. Cambie su archivo .tex a:
\documentclass[12pt, a4paper, leqno]{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{refs.bib}
\begin{document}
a\autocite[\pno~1]{acemoglu2008income}
b\autocite{baltagi2008econometric}
cdefghijklmn...
\nocite{kiviet1995bias}
\newpage
\printbibliography
\end{document}
y debería funcionar. Recuerde ejecutar pdflatex, biber, pdflatex, pdflatex para obtener todas las referencias y notas correctas.
Considere publicar un ejemplo práctico mínimo (sin todos los paquetes de uso adicionales) en su próxima pregunta; A veces, construir un ejemplo mínimo revela cuál es el problema.