Eu adicionei bibliografia em meu arquivo de látex assim:
...to the literature \cite{ahu61}
\bibliography{bibliography}
e minha bibliography.bib
aparência é assim:
@article{ahu61,
author={Arrow, Kenneth J. and Leonid Hurwicz and Hirofumi Uzawa},
title={Constraint qualifications in maximization problems},
journal={Naval Research Logistics Quarterly},
volume={8},
year = 1961,
pages = {175-191}
}
Se eu mantiver a citação, recebo
Texification succeeded: no errors!
However, there were warnings in your LaTeX source
./main.tex:231: LaTeX Warning: Citation `ahu61' on page 4 undefined on input line 231.
./main.tex: LaTeX Warning: There were undefined references.
e sem bibliografia.
Se eu removê-lo, não recebo avisos, mas também não recebo bibliografia.
Responder1
Um arquivo LaTeX mínimo usando 'standard' deve ter uma \bibliographystyle
linha além da \bibliography
linha e uma ou mais citações ( \cite
).
\documentclass{article}
\bibliographystyle{plain}
\begin{document}
...to the literature \cite{ahu61}
\bibliography{bibliography}
\end{document}
Existem muitos estilos existentes: a escolha correta dependerá da sua situação.