¿Cómo agregar correctamente bibliografía bibtex con látex?

¿Cómo agregar correctamente bibliografía bibtex con látex?

He agregado bibliografía en mi archivo de látex así:

...to the literature \cite{ahu61}
\bibliography{bibliography}

y mibibliography.bib aspecto es este:

@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}
     }

Si mantengo la citación que obtengo

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.

y sin bibliografía.

Si lo elimino no recibo advertencias pero tampoco bibliografía.

Respuesta1

Un archivo LaTeX mínimo que utilice 'estándar' debe tener una \bibliographystylelínea además de la \bibliographylínea y una o más citas ( \cite).

\documentclass{article}
\bibliographystyle{plain}
\begin{document}
...to the literature \cite{ahu61}
\bibliography{bibliography}
\end{document}

Hay muchos estilos existentes: la elección correcta dependerá de tu situación.

información relacionada